This dataset is collected by Subnet 0 and organized into two main tables: profiles and tweets. The profiles table contains information about Twitter user profiles, with the following columns:
Column NameDescription
banner_image_urlURL of the user’s banner image
bioBiography of the Twitter user
created_timestampTimestamp when the Twitter account was created
display_nameDisplay name of the Twitter user
followers_countNumber of followers the user has
following_countNumber of accounts the user is following
idUnique identifier for the Twitter user profile
is_blue_verifiedIndicates if the user is blue verified
linksLinks associated with the Twitter user
locationLocation of the Twitter user
nameName of the Twitter user
pinned_tweet_idsIDs of tweets pinned by the user
profession_categoriesCategories related to the user’s profession
profession_typeType of profession of the Twitter user
profile_image_urlURL of the user’s profile image
tweets_countTotal number of tweets made by the user
The tweets table contains information about tweets made by users, with the following columns:
Column NameDescription
article_cover_image_urlURL of the article’s cover image
article_idID of the article if the tweet links to one
article_preview_textPreview text of the linked article
article_titleTitle of the linked article
bookmarksNumber of bookmarks of the tweet
hashtagsHashtags used in the tweet
idUnique identifier for the tweet
imagesImages associated with the tweet
is_noteIndicates if the tweet is a note
likesNumber of likes the tweet has received
poster_idID of the user who posted the tweet
quotesNumber of quotes of the tweet
quote_parent_idID of the parent tweet if this tweet is a quote
quote_poster_idID of the user who posted the parent tweet
repliesNumber of replies to the tweet
reply_conversation_idID of the conversation this tweet is part of
reply_parent_idID of the parent tweet in the reply conversation
reply_poster_idID of the user who posted the parent tweet
repostsNumber of times the tweet has been reposted
retweet_parent_idID of the parent tweet if this tweet is a retweet
retweet_poster_idID of the user who posted the parent tweet
tagged_usersUsers tagged in the tweet
textContent of the tweet
timestampTimestamp when the tweet was posted
videosVideos associated with the tweet
viewsNumber of views the tweet has received

Enterprise Only

The profile_timeseries table contains timeseries data for Twitter profile statistics:
Column NameDescription
idUnique identifier for the Twitter user profile
timestampTimestamp when the profile stats snapshot was taken
following_countNumber of accounts the user is following at this time
followers_countNumber of followers the user has at this time
tweets_countTotal number of tweets made by the user at this time
Each row represents a snapshot of a profile’s statistics at a specific timestamp. The data is updated periodically at the same time as the profiles table and is ordered by timestamp for optimal query performance when using timestamp in query conditionals.

Utilities for the Twitter dataset

  1. Tweet Id to URL: https://twitter.com/i/web/status/{tweetId}
  2. Profile Id to URL: https://twitter.com/intent/user?user_id={userId}