Users
Get user profiles, follower data, followings, tweets, media and more.
Overview
The User endpoints are the largest set of endpoints in the API. They allow you to literally get any information about a user.
Endpoints
User Details by Username
Retrieves detailed user information by username.
curl --request GET \
--url 'https://<direct.gateway>/user/by/username/<username>' \
--header 'X-API-KEY: YOUR_API_KEY'
Parameters
Name | Type | Required | Description |
---|---|---|---|
username | string | Yes | The username (without @) |
Request Example
GET /user/by/username/elonmusk
Response Example
{
"user": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"avatar": {
"image_url": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg"
},
"core": {
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"name": "Elon Musk",
"screen_name": "elonmusk"
},
"dm_permissions": {},
"is_blue_verified": true,
"legacy": {
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949601,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164432,
"media_count": 4162,
"normal_followers_count": 226949601,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_interstitial_type": "",
"statuses_count": 86681,
"translator_type": "none",
"withheld_in_countries": []
},
"location": {
"location": ""
},
"media_permissions": {},
"parody_commentary_fan_label": "None",
"profile_image_shape": "Circle",
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"privacy": {
"protected": false
},
"relationship_perspectives": {},
"tipjar_settings": {
"is_enabled": false,
"bandcamp_handle": "",
"bitcoin_handle": "",
"cash_app_handle": "",
"ethereum_handle": "",
"gofundme_handle": "",
"patreon_handle": "",
"pay_pal_handle": "",
"venmo_handle": ""
},
"verification": {
"verified": false
},
"legacy_extended_profile": {},
"is_profile_translatable": false,
"has_hidden_subscriptions_on_profile": true,
"verification_info": {
"is_identity_verified": false,
"reason": {
"description": {
"text": "This account is verified because it's an affiliate of @X on X. Learn more",
"entities": [
{
"from_index": 54,
"to_index": 56,
"ref": {
"url": "https://twitter.com/X",
"url_type": "ExternalUrl"
}
},
{
"from_index": 63,
"to_index": 73,
"ref": {
"url": "https://help.twitter.com/en/rules-and-policies/profile-labels",
"url_type": "ExternalUrl"
}
}
]
},
"verified_since_msec": "-156836000000000",
"override_verified_year": -3000
}
},
"highlights_info": {
"can_highlight_tweets": true,
"highlighted_tweets": "757"
},
"user_seed_tweet_count": 0,
"business_account": {},
"creator_subscriptions_count": 225
}
}
}
User Details by UserId
Retrieves detailed user information by user ID.
curl --request GET \
--url 'https://<direct.gateway>/user/<userId>' \
--header 'X-API-KEY: YOUR_API_KEY'
Parameters
Name | Type | Required | Description |
---|---|---|---|
userId | string | Yes | The unique user ID |
Request Example
GET /user/44196397
Response Example
{
"user": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949521,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164432,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949521,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true,
"business_account": {},
"highlights_info": {
"can_highlight_tweets": true,
"highlighted_tweets": "757"
},
"user_seed_tweet_count": 0,
"premium_gifting_eligible": false,
"creator_subscriptions_count": 225,
"has_hidden_subscriptions_on_profile": true
}
}
}
Tweets by UserId
Retrieves all tweets from a specific user.
curl --request GET \
--url 'https://<direct.gateway>/user/<userId>/tweets?count=20' \
--header 'X-API-KEY: YOUR_API_KEY'
Parameters
Name | Type | Required | Description |
---|---|---|---|
userId | string | Yes (but you can use username instead in the query) | The unique user ID |
Query Parameters
Name | Type | Required | Description |
---|---|---|---|
count | string | No | Number of tweets to return (Default: 20, Max: 100) |
cursor | string | No | Pagination cursor. Read More |
username | string | No | The username (without @). If this is set, the userId parameter is ignored. You can provide "-1" as the userId then. |
Request Example
With userId:
GET /user/44196397/tweets?count=20
With username:
GET /user/-1/tweets?count=20&username=elonmusk
Response Example
{
"user": {
"result": {
"__typename": "User",
"timeline": {
"timeline": {
"instructions": [
{
"type": "TimelineClearCache"
},
{
"type": "TimelinePinEntry",
"entry": {
"entryId": "tweet-1972376013297586551",
"sortIndex": "1973353912849137664",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1972376013297586551",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1972376013297586551"
],
"editable_until_msecs": "1759089661000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "29584831",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1972284213232861204",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODE4MzExMDA1Njk4Njc4Nzg0",
"rest_id": "1818311005698678784",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Jul 30 15:42:27 +0000 2024",
"default_profile": true,
"default_profile_image": false,
"description": "Tech updates, strategy, and bold takes. I am the coolest villain, don't forget",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "buymeacoffee.com/xfreeze",
"expanded_url": "http://buymeacoffee.com/xfreeze",
"url": "https://t.co/benQfvMS86",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 28424,
"followers_count": 36708,
"friends_count": 1187,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 196,
"location": "Antarctica ",
"media_count": 2808,
"name": "X Freeze",
"normal_followers_count": 36708,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1818311005698678784/1757091277",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1876785200010539008/2_HFJjq9_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "amXFreeze",
"statuses_count": 20941,
"translator_type": "none",
"url": "https://t.co/benQfvMS86",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1835442711370871202",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "bc1qcgtw9up78rjqp62z47mwdtd5pgqupaz6cmnsnf",
"ethereum_handle": "0x7147139e6943aED136fcAf28Cee4f3AB4eaDCb37"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"initial_tweet_id": "1972282999678067062",
"edit_control_initial": {
"edit_tweet_ids": [
"1972282999678067062",
"1972284213232861204"
],
"editable_until_msecs": "1759067485000",
"is_edit_eligible": true,
"edits_remaining": "4"
}
},
"previous_counts": {
"bookmark_count": 1,
"favorite_count": 10,
"quote_count": 0,
"reply_count": 6,
"retweet_count": 0
},
"is_translatable": false,
"views": {
"count": "26968122",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 299,
"bookmarked": false,
"created_at": "Sun Sep 28 12:56:14 +0000 2025",
"conversation_id_str": "1972284213232861204",
"display_text_range": [
0,
156
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/GffMzz1jD2",
"expanded_url": "https://x.com/amXFreeze/status/1972284213232861204/photo/1",
"id_str": "1972282313170886656",
"indices": [
157,
180
],
"media_key": "3_1972282313170886656",
"media_url_https": "https://pbs.twimg.com/media/G170UHFWIAAVoHO.jpg",
"type": "photo",
"url": "https://t.co/GffMzz1jD2",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 834,
"w": 1285,
"resize": "fit"
},
"medium": {
"h": 779,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 441,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 834,
"width": 1285,
"focus_rects": [
{
"x": 0,
"y": 114,
"w": 1285,
"h": 720
},
{
"x": 320,
"y": 0,
"w": 834,
"h": 834
},
{
"x": 371,
"y": 0,
"w": 732,
"h": 834
},
{
"x": 529,
"y": 0,
"w": 417,
"h": 834
},
{
"x": 0,
"y": 0,
"w": 1285,
"h": 834
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1972282313170886656"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/GffMzz1jD2",
"expanded_url": "https://x.com/amXFreeze/status/1972284213232861204/photo/1",
"id_str": "1972282313170886656",
"indices": [
157,
180
],
"media_key": "3_1972282313170886656",
"media_url_https": "https://pbs.twimg.com/media/G170UHFWIAAVoHO.jpg",
"type": "photo",
"url": "https://t.co/GffMzz1jD2",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 834,
"w": 1285,
"resize": "fit"
},
"medium": {
"h": 779,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 441,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 834,
"width": 1285,
"focus_rects": [
{
"x": 0,
"y": 114,
"w": 1285,
"h": 720
},
{
"x": 320,
"y": 0,
"w": 834,
"h": 834
},
{
"x": 371,
"y": 0,
"w": 732,
"h": 834
},
{
"x": 529,
"y": 0,
"w": 417,
"h": 834
},
{
"x": 0,
"y": 0,
"w": 1285,
"h": 834
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1972282313170886656"
}
}
}
]
},
"favorite_count": 1442,
"favorited": false,
"full_text": "Grok Code leads with 57.6% of coding traffic on OpenRouter, more than every other AI code generator combined\n\nGrok Code Fast 1 ranks #1\nGrok 4 Fast is at #4 https://t.co/GffMzz1jD2",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 80,
"reply_count": 386,
"retweet_count": 290,
"retweeted": false,
"user_id_str": "1818311005698678784",
"id_str": "1972284213232861204"
}
}
},
"legacy": {
"bookmark_count": 3991,
"bookmarked": false,
"created_at": "Sun Sep 28 19:01:01 +0000 2025",
"conversation_id_str": "1972376013297586551",
"display_text_range": [
0,
71
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 53460,
"favorited": false,
"full_text": "Grok Code now being used more than all other AIs combined on OpenRouter",
"is_quote_status": true,
"lang": "en",
"quote_count": 715,
"quoted_status_id_str": "1972284213232861204",
"quoted_status_permalink": {
"url": "https://t.co/oUd8BSDZJw",
"expanded": "https://twitter.com/amxfreeze/status/1972284213232861204",
"display": "x.com/amxfreeze/stat…"
},
"reply_count": 7622,
"retweet_count": 9963,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1972376013297586551"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet",
"socialContext": {
"type": "TimelineGeneralContext",
"contextType": "Pin",
"text": "Pinned"
}
},
"clientEventInfo": {
"component": "pinned_tweets",
"element": "tweet"
}
}
}
},
{
"type": "TimelineAddEntries",
"entries": [
{
"entryId": "tweet-1973318572668813489",
"sortIndex": "1973353912849137663",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973318572668813489",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973318572668813489"
],
"editable_until_msecs": "1759314384867",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"state": "Enabled"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 09:26:24 +0000 2025",
"conversation_id_str": "1973318572668813489",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "763094579491008512",
"name": "Eric Daugherty",
"screen_name": "EricLDaugh",
"indices": [
3,
14
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @EricLDaugh: 🚨 BREAKING: In an outrageous development, US Citizenship and Immigration Director exposes that the migrant parole program w…",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 13059,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973318572668813489",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973097698078105910",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo3NjMwOTQ1Nzk0OTEwMDg1MTI=",
"rest_id": "763094579491008512",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Aug 09 19:28:20 +0000 2016",
"default_profile": true,
"default_profile_image": false,
"description": "Assistant News Director @FLVoiceNews | Marylander-turned-Floridian | Politics & breaking news alerts | https://t.co/55cqQGUClp | “Men must vote” - Charlie Kirk",
"entities": {
"description": {
"urls": [
{
"display_url": "flvoicenews.com",
"expanded_url": "http://flvoicenews.com",
"url": "https://t.co/55cqQGUClp",
"indices": [
103,
126
]
}
]
},
"url": {
"urls": [
{
"display_url": "ericdaugherty.net",
"expanded_url": "http://ericdaugherty.net",
"url": "https://t.co/9JrzFB6FPm",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 114784,
"followers_count": 635328,
"friends_count": 2248,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 2571,
"location": "",
"media_count": 22447,
"name": "Eric Daugherty",
"normal_followers_count": 635328,
"pinned_tweet_ids_str": [
"1973003991035367757"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/763094579491008512/1651332472",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1946702115037908992/NU6Ro1bl_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "EricLDaugh",
"statuses_count": 52661,
"translator_type": "none",
"url": "https://t.co/9JrzFB6FPm",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1480980230751854594",
"professional_type": "Creator",
"category": [
{
"id": 933,
"name": "Media Personality",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "39v2q5qoa7MQ4UPtAf7TzgYggtLF3v3nLD",
"cash_app_handle": "ELDaugh",
"venmo_handle": "ericldaugh"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973097698078105910"
],
"editable_until_msecs": "1759261724000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1037773",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 1928,
"bookmarked": false,
"created_at": "Tue Sep 30 18:48:44 +0000 2025",
"conversation_id_str": "1973097698078105910",
"display_text_range": [
0,
275
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/zeUqAsh3oX",
"expanded_url": "https://x.com/i/status/1973096129668813209/video/1",
"id_str": "1973095882313641985",
"indices": [
252,
275
],
"media_key": "13_1973095882313641985",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973095882313641985/img/iYpyxEnEbrQvCdMl.jpg",
"source_status_id_str": "1973096129668813209",
"source_user_id_str": "1355721251180961792",
"type": "video",
"url": "https://t.co/zeUqAsh3oX",
"additional_media_info": {
"monetizable": false,
"source_user": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzU1NzIxMjUxMTgwOTYxNzky",
"rest_id": "1355721251180961792",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sun Jan 31 03:35:19 +0000 2021",
"default_profile": true,
"default_profile_image": false,
"description": "David J. Freeman - Political Commentator - America First - MAGA - Christian",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 1115798,
"followers_count": 1583151,
"friends_count": 102061,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 4158,
"location": "CA to Texas in 2007",
"media_count": 34526,
"name": "Gunther Eagleman™",
"normal_followers_count": 1583151,
"pinned_tweet_ids_str": [
"1973083270897086540"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1355721251180961792/1740358024",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1606836521784512512/Xb-_cXXi_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "GuntherEagleman",
"statuses_count": 361863,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "3BtB9rMnpnoscZZU9MyVe8sycchW8R3ZXt",
"cash_app_handle": "$Gunthereagleman"
},
"super_follow_eligible": true
}
}
}
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 49063,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/pl/S8kf1fqllCWya7Cc.m3u8?tag=21&v=909"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/480x270/jdV-lmmmqKWup0y2.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/640x360/FSd8q9lG_T3TaTV7.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/1280x720/OlkDLXIA0l6CQqnr.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973095882313641985"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/zeUqAsh3oX",
"expanded_url": "https://x.com/i/status/1973096129668813209/video/1",
"id_str": "1973095882313641985",
"indices": [
252,
275
],
"media_key": "13_1973095882313641985",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973095882313641985/img/iYpyxEnEbrQvCdMl.jpg",
"source_status_id_str": "1973096129668813209",
"source_user_id_str": "1355721251180961792",
"type": "video",
"url": "https://t.co/zeUqAsh3oX",
"additional_media_info": {
"monetizable": false,
"source_user": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzU1NzIxMjUxMTgwOTYxNzky",
"rest_id": "1355721251180961792",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sun Jan 31 03:35:19 +0000 2021",
"default_profile": true,
"default_profile_image": false,
"description": "David J. Freeman - Political Commentator - America First - MAGA - Christian",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 1115798,
"followers_count": 1583151,
"friends_count": 102061,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 4158,
"location": "CA to Texas in 2007",
"media_count": 34526,
"name": "Gunther Eagleman™",
"normal_followers_count": 1583151,
"pinned_tweet_ids_str": [
"1973083270897086540"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1355721251180961792/1740358024",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1606836521784512512/Xb-_cXXi_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "GuntherEagleman",
"statuses_count": 361863,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "3BtB9rMnpnoscZZU9MyVe8sycchW8R3ZXt",
"cash_app_handle": "$Gunthereagleman"
},
"super_follow_eligible": true
}
}
}
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 49063,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/pl/S8kf1fqllCWya7Cc.m3u8?tag=21&v=909"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/480x270/jdV-lmmmqKWup0y2.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/640x360/FSd8q9lG_T3TaTV7.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/1280x720/OlkDLXIA0l6CQqnr.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973095882313641985"
}
}
}
]
},
"favorite_count": 42284,
"favorited": false,
"full_text": "🚨 BREAKING: In an outrageous development, US Citizenship and Immigration Director exposes that the migrant parole program was LITTERED with fraud, with rich NGOs \"sponsoring\" thousands of illegals without even knowing who they were. This is betrayal.\n\nhttps://t.co/zeUqAsh3oX",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 371,
"reply_count": 860,
"retweet_count": 13059,
"retweeted": false,
"user_id_str": "763094579491008512",
"id_str": "1973097698078105910"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973318445853975027",
"sortIndex": "1973353912849137662",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973318445853975027",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973318445853975027"
],
"editable_until_msecs": "1759314354632",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 09:25:54 +0000 2025",
"conversation_id_str": "1973318445853975027",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1498032293671325699",
"name": "Aesthetica",
"screen_name": "Anc_Aesthetics",
"indices": [
3,
18
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @Anc_Aesthetics: One of the biggest lies ever told is that leftists (communists) are \"the compassionate ones.\" These are the most evil p…",
"is_quote_status": true,
"lang": "en",
"quote_count": 0,
"quoted_status_id_str": "1973219233124458944",
"quoted_status_permalink": {
"url": "https://t.co/9y7LPT2sZK",
"expanded": "https://twitter.com/TheChiefNerd/status/1973219233124458944",
"display": "x.com/TheChiefNerd/s…"
},
"reply_count": 0,
"retweet_count": 1776,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973318445853975027",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973229132625711281",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNDk4MDMyMjkzNjcxMzI1Njk5",
"rest_id": "1498032293671325699",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Sun Feb 27 20:28:33 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "Artist | Aesthetics | History - In the Arena",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "buymeacoffee.com/aesthetica1",
"expanded_url": "https://buymeacoffee.com/aesthetica1",
"url": "https://t.co/BDYI464G9q",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 68791,
"followers_count": 521781,
"friends_count": 777,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 1984,
"location": "",
"media_count": 6509,
"name": "Aesthetica",
"normal_followers_count": 521781,
"pinned_tweet_ids_str": [
"1966952427049152973"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1498032293671325699/1721664062",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1854663809077510147/Q_4h4AQ0_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Anc_Aesthetics",
"statuses_count": 23146,
"translator_type": "none",
"url": "https://t.co/BDYI464G9q",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1618082388008902658",
"professional_type": "Creator",
"category": [
{
"id": 1017,
"name": "Artist",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973229132625711281"
],
"editable_until_msecs": "1759293060000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "902794",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973219233124458944",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo2OTE1Njg2MQ==",
"rest_id": "69156861",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Thu Aug 27 01:10:41 +0000 2009",
"default_profile": true,
"default_profile_image": false,
"description": "Software Engineer | Podcast Clipper | DM for Removal | Merch 👉https://t.co/LEGwYHQAst | Tips 👉https://t.co/h9xVqydk1b",
"entities": {
"description": {
"urls": [
{
"display_url": "trustthescilenced.com",
"expanded_url": "http://trustthescilenced.com",
"url": "https://t.co/LEGwYHQAst",
"indices": [
63,
86
]
},
{
"display_url": "buymeacoffee.com/chiefnerd",
"expanded_url": "http://buymeacoffee.com/chiefnerd",
"url": "https://t.co/h9xVqydk1b",
"indices": [
95,
118
]
}
]
},
"url": {
"urls": [
{
"display_url": "ChiefNerd.id",
"expanded_url": "http://ChiefNerd.id",
"url": "https://t.co/j6eXiZ1K2I",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 147882,
"followers_count": 889006,
"friends_count": 2169,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 3259,
"location": "United States",
"media_count": 11252,
"name": "Chief Nerd",
"normal_followers_count": 889006,
"pinned_tweet_ids_str": [
"1973219233124458944"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/69156861/1738454949",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1658949550751596546/zZkL3U76_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "TheChiefNerd",
"statuses_count": 28058,
"translator_type": "none",
"url": "https://t.co/j6eXiZ1K2I",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1621554793352253445",
"professional_type": "Creator",
"category": [
{
"id": 579,
"name": "Media & News",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973219233124458944"
],
"editable_until_msecs": "1759290700000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1526850",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 2443,
"bookmarked": false,
"created_at": "Wed Oct 01 02:51:40 +0000 2025",
"conversation_id_str": "1973219233124458944",
"display_text_range": [
0,
273
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/uny1gokRwQ",
"expanded_url": "https://x.com/TheChiefNerd/status/1973219233124458944/video/1",
"id_str": "1973219106250743808",
"indices": [
274,
297
],
"media_key": "13_1973219106250743808",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973219106250743808/img/Cw7UE98cf0NfkUie.jpg",
"type": "video",
"url": "https://t.co/uny1gokRwQ",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 1080,
"w": 1920,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1080,
"width": 1920,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 147733,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/pl/tY47m57CKwvnP1U4.m3u8?tag=21&v=5e7"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/480x270/pMGXBXpaSqh7kC0s.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/640x360/5UquLGbcmtSovf2W.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/1280x720/_JJHXQRnkRWbdQyp.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/1920x1080/idFXvOV9HDWol7fb.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973219106250743808"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/uny1gokRwQ",
"expanded_url": "https://x.com/TheChiefNerd/status/1973219233124458944/video/1",
"id_str": "1973219106250743808",
"indices": [
274,
297
],
"media_key": "13_1973219106250743808",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973219106250743808/img/Cw7UE98cf0NfkUie.jpg",
"type": "video",
"url": "https://t.co/uny1gokRwQ",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 1080,
"w": 1920,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1080,
"width": 1920,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 147733,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/pl/tY47m57CKwvnP1U4.m3u8?tag=21&v=5e7"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/480x270/pMGXBXpaSqh7kC0s.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/640x360/5UquLGbcmtSovf2W.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/1280x720/_JJHXQRnkRWbdQyp.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/1920x1080/idFXvOV9HDWol7fb.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973219106250743808"
}
}
}
]
},
"favorite_count": 33437,
"favorited": false,
"full_text": "🚨 ROGAN: “The Charlie Kirk thing opened up my eyes. I never expected so many people would celebrate that man's murder. That is evil … especially when you're seeing people on the left, that are supposed to be … the inclusive people, celebrating gun violence. That's insane.” https://t.co/uny1gokRwQ",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 117,
"reply_count": 306,
"retweet_count": 4121,
"retweeted": false,
"user_id_str": "69156861",
"id_str": "1973219233124458944"
}
}
},
"legacy": {
"bookmark_count": 719,
"bookmarked": false,
"created_at": "Wed Oct 01 03:31:00 +0000 2025",
"conversation_id_str": "1973229132625711281",
"display_text_range": [
0,
269
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 10762,
"favorited": false,
"full_text": "One of the biggest lies ever told is that leftists (communists) are \"the compassionate ones.\" These are the most evil people to ever live. They are not compassionate, they have no morality, they are deeply dysgenic broken freaks filled with envious hate and resentment.",
"is_quote_status": true,
"lang": "en",
"quote_count": 50,
"quoted_status_id_str": "1973219233124458944",
"quoted_status_permalink": {
"url": "https://t.co/9y7LPT2sZK",
"expanded": "https://twitter.com/TheChiefNerd/status/1973219233124458944",
"display": "x.com/TheChiefNerd/s…"
},
"reply_count": 340,
"retweet_count": 1776,
"retweeted": false,
"user_id_str": "1498032293671325699",
"id_str": "1973229132625711281"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973318296524169692",
"sortIndex": "1973353912849137661",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973318296524169692",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973318296524169692"
],
"editable_until_msecs": "1759314319029",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"state": "Enabled"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 09:25:19 +0000 2025",
"conversation_id_str": "1973318296524169692",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1614879930885574656",
"name": "SMX 🇺🇸",
"screen_name": "iam_smx",
"indices": [
3,
11
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @iam_smx: Wikipedia should have just taken that $1 billion offer from Elon Musk, it's too late, the rival is coming: Grokipedia! https:/…",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 839,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973318296524169692",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973033072510783994",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjE0ODc5OTMwODg1NTc0NjU2",
"rest_id": "1614879930885574656",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Mon Jan 16 06:59:28 +0000 2023",
"default_profile": true,
"default_profile_image": false,
"description": "Innovation, Technology, Rockets & Tesla ignite my passion. Host of The Story Book. Sharing updates & info 24/7. Breaking World News! Motivation & Fun guaranteed",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 59345,
"followers_count": 135023,
"friends_count": 589,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 382,
"location": "",
"media_count": 7321,
"name": "SMX 🇺🇸",
"normal_followers_count": 135023,
"pinned_tweet_ids_str": [
"1972556356675936578"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1614879930885574656/1736364306",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1785421156859719680/gSkjB7g7_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "iam_smx",
"statuses_count": 39535,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1614897015388766209",
"professional_type": "Business",
"category": [
{
"id": 713,
"name": "Science & Technology",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": false,
"patreon_handle": ""
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973033072510783994"
],
"editable_until_msecs": "1759246316000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "558021",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 172,
"bookmarked": false,
"created_at": "Tue Sep 30 14:31:56 +0000 2025",
"conversation_id_str": "1973033072510783994",
"display_text_range": [
0,
118
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/cLBKfPRgyO",
"expanded_url": "https://x.com/iam_smx/status/1973033072510783994/photo/1",
"id_str": "1973033064885301248",
"indices": [
119,
142
],
"media_key": "3_1973033064885301248",
"media_url_https": "https://pbs.twimg.com/media/G2GfHnKWsAACYEj.jpg",
"type": "photo",
"url": "https://t.co/cLBKfPRgyO",
"ext_media_availability": {
"status": "Available"
},
"features": {
"all": {
"tags": [
{
"user_id": "1587601034339561472",
"name": "Tetsuo",
"screen_name": "tetsuoai",
"type": "user"
}
]
},
"large": {
"faces": [
{
"x": 189,
"y": 437,
"h": 175,
"w": 175
}
]
},
"medium": {
"faces": [
{
"x": 189,
"y": 437,
"h": 175,
"w": 175
}
]
},
"small": {
"faces": [
{
"x": 107,
"y": 247,
"h": 99,
"w": 99
}
]
},
"orig": {
"faces": [
{
"x": 189,
"y": 437,
"h": 175,
"w": 175
}
]
}
},
"sizes": {
"large": {
"h": 1200,
"w": 1200,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 680,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1200,
"width": 1200,
"focus_rects": [
{
"x": 0,
"y": 528,
"w": 1200,
"h": 672
},
{
"x": 0,
"y": 0,
"w": 1200,
"h": 1200
},
{
"x": 147,
"y": 0,
"w": 1053,
"h": 1200
},
{
"x": 510,
"y": 0,
"w": 600,
"h": 1200
},
{
"x": 0,
"y": 0,
"w": 1200,
"h": 1200
}
]
},
"media_results": {
"result": {
"media_key": "3_1973033064885301248"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/cLBKfPRgyO",
"expanded_url": "https://x.com/iam_smx/status/1973033072510783994/photo/1",
"id_str": "1973033064885301248",
"indices": [
119,
142
],
"media_key": "3_1973033064885301248",
"media_url_https": "https://pbs.twimg.com/media/G2GfHnKWsAACYEj.jpg",
"type": "photo",
"url": "https://t.co/cLBKfPRgyO",
"ext_media_availability": {
"status": "Available"
},
"features": {
"all": {
"tags": [
{
"user_id": "1587601034339561472",
"name": "Tetsuo",
"screen_name": "tetsuoai",
"type": "user"
}
]
},
"large": {
"faces": [
{
"x": 189,
"y": 437,
"h": 175,
"w": 175
}
]
},
"medium": {
"faces": [
{
"x": 189,
"y": 437,
"h": 175,
"w": 175
}
]
},
"small": {
"faces": [
{
"x": 107,
"y": 247,
"h": 99,
"w": 99
}
]
},
"orig": {
"faces": [
{
"x": 189,
"y": 437,
"h": 175,
"w": 175
}
]
}
},
"sizes": {
"large": {
"h": 1200,
"w": 1200,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 680,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1200,
"width": 1200,
"focus_rects": [
{
"x": 0,
"y": 528,
"w": 1200,
"h": 672
},
{
"x": 0,
"y": 0,
"w": 1200,
"h": 1200
},
{
"x": 147,
"y": 0,
"w": 1053,
"h": 1200
},
{
"x": 510,
"y": 0,
"w": 600,
"h": 1200
},
{
"x": 0,
"y": 0,
"w": 1200,
"h": 1200
}
]
},
"media_results": {
"result": {
"media_key": "3_1973033064885301248"
}
}
}
]
},
"favorite_count": 6469,
"favorited": false,
"full_text": "Wikipedia should have just taken that $1 billion offer from Elon Musk, it's too late, the rival is coming: Grokipedia! https://t.co/cLBKfPRgyO",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 47,
"reply_count": 410,
"retweet_count": 839,
"retweeted": false,
"user_id_str": "1614879930885574656",
"id_str": "1973033072510783994"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973317570917966037",
"sortIndex": "1973353912849137660",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973317570917966037",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973317570917966037"
],
"editable_until_msecs": "1759314146000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "3027049",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973158482779185369",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzI5ODA3Mg==",
"rest_id": "13298072",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Sun Feb 10 01:12:32 +0000 2008",
"default_profile": false,
"default_profile_image": false,
"description": "Electric vehicles, giant batteries & solar, AI & robotics / https://t.co/WbcKtqUxSs",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "http://votetesla.com",
"url": "https://t.co/WbcKtqUxSs",
"indices": [
60,
83
]
}
]
},
"url": {
"urls": [
{
"display_url": "tesla.com",
"expanded_url": "https://www.tesla.com",
"url": "https://t.co/EJC6qVEJnC",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 7239,
"followers_count": 24402734,
"friends_count": 74,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 27627,
"location": "",
"media_count": 1872,
"name": "Tesla",
"normal_followers_count": 24402734,
"pinned_tweet_ids_str": [
"1968695220754858305"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/13298072/1740542578",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1337607516008501250/6Ggc4S5n_normal.png",
"profile_interstitial_type": "",
"screen_name": "Tesla",
"statuses_count": 9815,
"translator_type": "none",
"url": "https://t.co/EJC6qVEJnC",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1590468365159636997",
"professional_type": "Business",
"category": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973158482779185369"
],
"editable_until_msecs": "1759276216000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "3855667",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"note_tweet": {
"is_expandable": true,
"note_tweet_results": {
"result": {
"id": "Tm90ZVR3ZWV0OjE5NzMxNTg0ODI2NTc1OTk0ODg=",
"text": "New Model Y Performance now available in the US\n\n– 3.3 secs 0-60\n– 155 mph top speed\n– 308 mi range\n\nHighlights\n– New front/rear fascia & carbon spoiler for better aerodynamics\n– Performance carbon spoiler = increased downforce, reduced drag\n– New 21\" Arachnid wheels + tires with staggered fitment to improve grip & steering\n– Adaptive damping adjusts handling + suspension for a smooth, stable ride\n– New Drive Modes give you greater control for high-speed driving\n– Increased charge capacity thanks to high-density battery cells\n– Quiet cabin with premium sound-damping materials & acoustic glass\n– Heated/ventilated front sport seats & heated, perforated rear seats with power recline\n\nAlso, added bolstering & side cushions that hold you in your seat when cornering + powered thigh cushion extenders for extra comfort\n\n– 16\" high-res touchscreen\n\nAnd when you're done having fun, FSD Supervised will drive you home",
"entity_set": {
"hashtags": [],
"symbols": [],
"urls": [],
"user_mentions": []
},
"richtext": {
"richtext_tags": [
{
"from_index": 0,
"to_index": 47,
"richtext_types": [
"Bold"
]
},
{
"from_index": 101,
"to_index": 111,
"richtext_types": [
"Bold"
]
}
]
},
"media": {
"inline_media": [
{
"media_id": "1973158374482255874",
"index": 919
},
{
"media_id": "1973158374151008257",
"index": 919
},
{
"media_id": "1973158374444531712",
"index": 919
},
{
"media_id": "1973158374457090052",
"index": 919
}
]
}
}
}
},
"grok_analysis_button": false,
"legacy": {
"bookmark_count": 312,
"bookmarked": false,
"created_at": "Tue Sep 30 22:50:16 +0000 2025",
"conversation_id_str": "1973158482779185369",
"display_text_range": [
0,
284
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374151008257",
"indices": [
285,
308
],
"media_key": "3_1973158374151008257",
"media_url_https": "https://pbs.twimg.com/media/G2IRFkjbsAEKJ2b.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1152,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2304,
"width": 4096,
"focus_rects": [
{
"x": 0,
"y": 10,
"w": 4096,
"h": 2294
},
{
"x": 793,
"y": 0,
"w": 2304,
"h": 2304
},
{
"x": 935,
"y": 0,
"w": 2021,
"h": 2304
},
{
"x": 1369,
"y": 0,
"w": 1152,
"h": 2304
},
{
"x": 0,
"y": 0,
"w": 4096,
"h": 2304
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374151008257"
}
}
},
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374444531712",
"indices": [
285,
308
],
"media_key": "3_1973158374444531712",
"media_url_https": "https://pbs.twimg.com/media/G2IRFlpagAALAVL.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 319,
"y": 601,
"h": 97,
"w": 97
},
{
"x": 257,
"y": 421,
"h": 143,
"w": 143
}
]
},
"medium": {
"faces": [
{
"x": 187,
"y": 352,
"h": 57,
"w": 57
},
{
"x": 150,
"y": 247,
"h": 84,
"w": 84
}
]
},
"small": {
"faces": [
{
"x": 106,
"y": 199,
"h": 32,
"w": 32
},
{
"x": 85,
"y": 140,
"h": 47,
"w": 47
}
]
},
"orig": {
"faces": [
{
"x": 586,
"y": 1102,
"h": 179,
"w": 179
},
{
"x": 472,
"y": 773,
"h": 263,
"w": 263
}
]
}
},
"sizes": {
"large": {
"h": 1152,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 382,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2110,
"width": 3752,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 3752,
"h": 2101
},
{
"x": 164,
"y": 0,
"w": 2110,
"h": 2110
},
{
"x": 294,
"y": 0,
"w": 1851,
"h": 2110
},
{
"x": 692,
"y": 0,
"w": 1055,
"h": 2110
},
{
"x": 0,
"y": 0,
"w": 3752,
"h": 2110
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374444531712"
}
}
},
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374457090052",
"indices": [
285,
308
],
"media_key": "3_1973158374457090052",
"media_url_https": "https://pbs.twimg.com/media/G2IRFlsaIAQfp0N.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1536,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 900,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 510,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 3072,
"width": 4096,
"focus_rects": [
{
"x": 0,
"y": 184,
"w": 4096,
"h": 2294
},
{
"x": 0,
"y": 0,
"w": 3072,
"h": 3072
},
{
"x": 0,
"y": 0,
"w": 2695,
"h": 3072
},
{
"x": 563,
"y": 0,
"w": 1536,
"h": 3072
},
{
"x": 0,
"y": 0,
"w": 4096,
"h": 3072
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374457090052"
}
}
},
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374482255874",
"indices": [
285,
308
],
"media_key": "3_1973158374482255874",
"media_url_https": "https://pbs.twimg.com/media/G2IRFlyaIAIKr62.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1152,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2304,
"width": 4096,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 4096,
"h": 2294
},
{
"x": 793,
"y": 0,
"w": 2304,
"h": 2304
},
{
"x": 935,
"y": 0,
"w": 2021,
"h": 2304
},
{
"x": 1369,
"y": 0,
"w": 1152,
"h": 2304
},
{
"x": 0,
"y": 0,
"w": 4096,
"h": 2304
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374482255874"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374151008257",
"indices": [
285,
308
],
"media_key": "3_1973158374151008257",
"media_url_https": "https://pbs.twimg.com/media/G2IRFkjbsAEKJ2b.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1152,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2304,
"width": 4096,
"focus_rects": [
{
"x": 0,
"y": 10,
"w": 4096,
"h": 2294
},
{
"x": 793,
"y": 0,
"w": 2304,
"h": 2304
},
{
"x": 935,
"y": 0,
"w": 2021,
"h": 2304
},
{
"x": 1369,
"y": 0,
"w": 1152,
"h": 2304
},
{
"x": 0,
"y": 0,
"w": 4096,
"h": 2304
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374151008257"
}
}
},
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374444531712",
"indices": [
285,
308
],
"media_key": "3_1973158374444531712",
"media_url_https": "https://pbs.twimg.com/media/G2IRFlpagAALAVL.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 319,
"y": 601,
"h": 97,
"w": 97
},
{
"x": 257,
"y": 421,
"h": 143,
"w": 143
}
]
},
"medium": {
"faces": [
{
"x": 187,
"y": 352,
"h": 57,
"w": 57
},
{
"x": 150,
"y": 247,
"h": 84,
"w": 84
}
]
},
"small": {
"faces": [
{
"x": 106,
"y": 199,
"h": 32,
"w": 32
},
{
"x": 85,
"y": 140,
"h": 47,
"w": 47
}
]
},
"orig": {
"faces": [
{
"x": 586,
"y": 1102,
"h": 179,
"w": 179
},
{
"x": 472,
"y": 773,
"h": 263,
"w": 263
}
]
}
},
"sizes": {
"large": {
"h": 1152,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 382,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2110,
"width": 3752,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 3752,
"h": 2101
},
{
"x": 164,
"y": 0,
"w": 2110,
"h": 2110
},
{
"x": 294,
"y": 0,
"w": 1851,
"h": 2110
},
{
"x": 692,
"y": 0,
"w": 1055,
"h": 2110
},
{
"x": 0,
"y": 0,
"w": 3752,
"h": 2110
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374444531712"
}
}
},
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374457090052",
"indices": [
285,
308
],
"media_key": "3_1973158374457090052",
"media_url_https": "https://pbs.twimg.com/media/G2IRFlsaIAQfp0N.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1536,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 900,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 510,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 3072,
"width": 4096,
"focus_rects": [
{
"x": 0,
"y": 184,
"w": 4096,
"h": 2294
},
{
"x": 0,
"y": 0,
"w": 3072,
"h": 3072
},
{
"x": 0,
"y": 0,
"w": 2695,
"h": 3072
},
{
"x": 563,
"y": 0,
"w": 1536,
"h": 3072
},
{
"x": 0,
"y": 0,
"w": 4096,
"h": 3072
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374457090052"
}
}
},
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374482255874",
"indices": [
285,
308
],
"media_key": "3_1973158374482255874",
"media_url_https": "https://pbs.twimg.com/media/G2IRFlyaIAIKr62.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1152,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2304,
"width": 4096,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 4096,
"h": 2294
},
{
"x": 793,
"y": 0,
"w": 2304,
"h": 2304
},
{
"x": 935,
"y": 0,
"w": 2021,
"h": 2304
},
{
"x": 1369,
"y": 0,
"w": 1152,
"h": 2304
},
{
"x": 0,
"y": 0,
"w": 4096,
"h": 2304
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374482255874"
}
}
}
]
},
"favorite_count": 6559,
"favorited": false,
"full_text": "New Model Y Performance now available in the US\n\n– 3.3 secs 0-60\n– 155 mph top speed\n– 308 mi range\n\nHighlights\n– New front/rear fascia & carbon spoiler for better aerodynamics\n– Performance carbon spoiler = increased downforce, reduced drag\n– New 21\" Arachnid wheels + tires with https://t.co/Tz9W28nR8G",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 254,
"reply_count": 594,
"retweet_count": 862,
"retweeted": false,
"user_id_str": "13298072",
"id_str": "1973158482779185369"
}
}
},
"legacy": {
"bookmark_count": 491,
"bookmarked": false,
"created_at": "Wed Oct 01 09:22:26 +0000 2025",
"conversation_id_str": "1973317570917966037",
"display_text_range": [
0,
0
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/tu4nztFwwG",
"expanded_url": "https://x.com/elonmusk/status/1973317570917966037/photo/1",
"id_str": "1973317567654854656",
"indices": [
0,
23
],
"media_key": "3_1973317567654854656",
"media_url_https": "https://pbs.twimg.com/media/G2Kh32kbAAAnVK3.jpg",
"type": "photo",
"url": "https://t.co/tu4nztFwwG",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1536,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 900,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 510,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1536,
"width": 2048,
"focus_rects": [
{
"x": 0,
"y": 92,
"w": 2048,
"h": 1147
},
{
"x": 0,
"y": 0,
"w": 1536,
"h": 1536
},
{
"x": 0,
"y": 0,
"w": 1347,
"h": 1536
},
{
"x": 281,
"y": 0,
"w": 768,
"h": 1536
},
{
"x": 0,
"y": 0,
"w": 2048,
"h": 1536
}
]
},
"media_results": {
"result": {
"media_key": "3_1973317567654854656"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/tu4nztFwwG",
"expanded_url": "https://x.com/elonmusk/status/1973317570917966037/photo/1",
"id_str": "1973317567654854656",
"indices": [
0,
23
],
"media_key": "3_1973317567654854656",
"media_url_https": "https://pbs.twimg.com/media/G2Kh32kbAAAnVK3.jpg",
"type": "photo",
"url": "https://t.co/tu4nztFwwG",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1536,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 900,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 510,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1536,
"width": 2048,
"focus_rects": [
{
"x": 0,
"y": 92,
"w": 2048,
"h": 1147
},
{
"x": 0,
"y": 0,
"w": 1536,
"h": 1536
},
{
"x": 0,
"y": 0,
"w": 1347,
"h": 1536
},
{
"x": 281,
"y": 0,
"w": 768,
"h": 1536
},
{
"x": 0,
"y": 0,
"w": 2048,
"h": 1536
}
]
},
"media_results": {
"result": {
"media_key": "3_1973317567654854656"
}
}
}
]
},
"favorite_count": 27764,
"favorited": false,
"full_text": "https://t.co/tu4nztFwwG",
"is_quote_status": true,
"lang": "zxx",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 142,
"quoted_status_id_str": "1973158482779185369",
"quoted_status_permalink": {
"url": "https://t.co/kNepL43eB0",
"expanded": "https://twitter.com/tesla/status/1973158482779185369",
"display": "x.com/tesla/status/1…"
},
"reply_count": 2194,
"retweet_count": 2056,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973317570917966037"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "who-to-follow-1973353912849137669",
"sortIndex": "1973353912849137659",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "who-to-follow-1973353912849137669-user-50393960",
"item": {
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo1MDM5Mzk2MA==",
"rest_id": "50393960",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Wed Jun 24 18:44:10 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "Sharing things I'm learning through my foundation work and other interests.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "gatesnot.es/tgn",
"expanded_url": "https://gatesnot.es/tgn",
"url": "https://t.co/TiXXwOGE95",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 550,
"followers_count": 66279131,
"friends_count": 572,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 117001,
"location": "Seattle, WA",
"media_count": 1530,
"name": "Bill Gates",
"normal_followers_count": 66279131,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/50393960/1745250848",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1879013694367252480/Gxa-Pspq_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "BillGates",
"statuses_count": 4516,
"translator_type": "regular",
"url": "https://t.co/TiXXwOGE95",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "suggest_who_to_follow",
"element": "user",
"details": {
"timelinesDetails": {
"injectionType": "WhoToFollow",
"controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
"sourceData": "DAABCgABA0fZe8EWvDkKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
}
}
}
}
},
{
"entryId": "who-to-follow-1973353912849137669-user-2455740283",
"item": {
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyNDU1NzQwMjgz",
"rest_id": "2455740283",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Mon Apr 21 00:28:42 +0000 2014",
"default_profile": false,
"default_profile_image": false,
"description": "New MrBeast or MrBeast Gaming video each Saturday!",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "teamwater.org",
"expanded_url": "http://teamwater.org",
"url": "https://t.co/v1pwp6rN7R",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 23205,
"followers_count": 33316147,
"friends_count": 2189,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 9066,
"location": "Follow me for a cookie",
"media_count": 971,
"name": "MrBeast",
"normal_followers_count": 33316147,
"pinned_tweet_ids_str": [
"1941802940768850033"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2455740283/1743017990",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/994592419705274369/RLplF55e_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "MrBeast",
"statuses_count": 7459,
"translator_type": "none",
"url": "https://t.co/v1pwp6rN7R",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679573344159510535",
"professional_type": "Creator",
"category": [
{
"id": 933,
"name": "Media Personality",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true
},
"super_follow_eligible": true
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "suggest_who_to_follow",
"element": "user",
"details": {
"timelinesDetails": {
"injectionType": "WhoToFollow",
"controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
"sourceData": "DAABCgABA0fZe8EWvDkKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
}
}
}
}
},
{
"entryId": "who-to-follow-1973353912849137669-user-34743251",
"item": {
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozNDc0MzI1MQ==",
"rest_id": "34743251",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Thu Apr 23 21:53:30 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "SpaceX designs, manufactures and launches the world’s most advanced rockets and spacecraft",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "spacex.com",
"expanded_url": "http://spacex.com",
"url": "https://t.co/VOJ6qEctND",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 504,
"followers_count": 40108374,
"friends_count": 120,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 43665,
"location": "Earth",
"media_count": 4130,
"name": "SpaceX",
"normal_followers_count": 40108374,
"pinned_tweet_ids_str": [
"1972798064403357887"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/34743251/1681251194",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1697749409851985920/HbrI04tM_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "SpaceX",
"statuses_count": 10696,
"translator_type": "none",
"url": "https://t.co/VOJ6qEctND",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1681839322029502464",
"professional_type": "Business",
"category": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "suggest_who_to_follow",
"element": "user",
"details": {
"timelinesDetails": {
"injectionType": "WhoToFollow",
"controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
"sourceData": "DAABCgABA0fZe8EWvDkKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
}
}
}
}
}
],
"displayType": "Vertical",
"header": {
"displayType": "Classic",
"text": "Who to follow",
"sticky": false
},
"footer": {
"displayType": "Classic",
"text": "Show more",
"landingUrl": {
"url": "twitter://connect_people?user_id=44196397&display_location=profile_wtf_showmore",
"urlType": "DeepLink"
}
},
"clientEventInfo": {
"component": "suggest_who_to_follow",
"details": {
"timelinesDetails": {
"injectionType": "WhoToFollow",
"controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
"sourceData": "DAABCgABA0fZe8EWvDkKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
}
}
}
}
},
{
"entryId": "tweet-1973295555423216052",
"sortIndex": "1973353912849137658",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973295555423216052",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973295555423216052"
],
"editable_until_msecs": "1759308897128",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:54:57 +0000 2025",
"conversation_id_str": "1973295555423216052",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1663701168839872512",
"name": "MAGA Voice",
"screen_name": "MAGAVoice",
"indices": [
3,
13
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @MAGAVoice: BREAKING 🚨 After Elon Musk told his 226 million followers he’s CANCELLING Netflix, the trend has gone VIRAL of people postin…",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 27031,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973295555423216052",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973153076883365940",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjYzNzAxMTY4ODM5ODcyNTEy",
"rest_id": "1663701168839872512",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed May 31 00:17:33 +0000 2023",
"default_profile": true,
"default_profile_image": false,
"description": "Want to take back OUR country? JOIN ME 🇺🇸 Donald Trump won🥇Proud Patriot. Pro Elon Musk",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 219397,
"followers_count": 1319357,
"friends_count": 520,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 2255,
"location": "TURN ON NOTIFICATIONS 🔔",
"media_count": 17350,
"name": "MAGA Voice",
"normal_followers_count": 1319357,
"pinned_tweet_ids_str": [
"1965914658050814073"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1663701168839872512/1733905728",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1866679989141377027/aex88zyV_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "MAGAVoice",
"statuses_count": 121150,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973153076883365940"
],
"editable_until_msecs": "1759274927000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "3916983",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 2871,
"bookmarked": false,
"created_at": "Tue Sep 30 22:28:47 +0000 2025",
"conversation_id_str": "1973153076883365940",
"display_text_range": [
0,
184
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/qfYcjSO0GI",
"expanded_url": "https://x.com/MAGAVoice/status/1973153076883365940/photo/1",
"id_str": "1973153067391651840",
"indices": [
185,
208
],
"media_key": "3_1973153067391651840",
"media_url_https": "https://pbs.twimg.com/media/G2IMQrVaEAAyG2e.jpg",
"type": "photo",
"url": "https://t.co/qfYcjSO0GI",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
},
"medium": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
},
"small": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
},
"orig": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
}
},
"sizes": {
"large": {
"h": 619,
"w": 604,
"resize": "fit"
},
"medium": {
"h": 619,
"w": 604,
"resize": "fit"
},
"small": {
"h": 619,
"w": 604,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 619,
"width": 604,
"focus_rects": [
{
"x": 0,
"y": 63,
"w": 604,
"h": 338
},
{
"x": 0,
"y": 0,
"w": 604,
"h": 604
},
{
"x": 23,
"y": 0,
"w": 543,
"h": 619
},
{
"x": 139,
"y": 0,
"w": 310,
"h": 619
},
{
"x": 0,
"y": 0,
"w": 604,
"h": 619
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973153067391651840"
}
}
},
{
"display_url": "pic.x.com/qfYcjSO0GI",
"expanded_url": "https://x.com/MAGAVoice/status/1973153076883365940/photo/1",
"id_str": "1973153067383263232",
"indices": [
185,
208
],
"media_key": "3_1973153067383263232",
"media_url_https": "https://pbs.twimg.com/media/G2IMQrTaEAAQtXO.jpg",
"type": "photo",
"url": "https://t.co/qfYcjSO0GI",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1364,
"w": 1320,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 1161,
"resize": "fit"
},
"small": {
"h": 680,
"w": 658,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1364,
"width": 1320,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1320,
"h": 739
},
{
"x": 0,
"y": 0,
"w": 1320,
"h": 1320
},
{
"x": 0,
"y": 0,
"w": 1196,
"h": 1364
},
{
"x": 169,
"y": 0,
"w": 682,
"h": 1364
},
{
"x": 0,
"y": 0,
"w": 1320,
"h": 1364
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973153067383263232"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/qfYcjSO0GI",
"expanded_url": "https://x.com/MAGAVoice/status/1973153076883365940/photo/1",
"id_str": "1973153067391651840",
"indices": [
185,
208
],
"media_key": "3_1973153067391651840",
"media_url_https": "https://pbs.twimg.com/media/G2IMQrVaEAAyG2e.jpg",
"type": "photo",
"url": "https://t.co/qfYcjSO0GI",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
},
"medium": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
},
"small": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
},
"orig": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
}
},
"sizes": {
"large": {
"h": 619,
"w": 604,
"resize": "fit"
},
"medium": {
"h": 619,
"w": 604,
"resize": "fit"
},
"small": {
"h": 619,
"w": 604,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 619,
"width": 604,
"focus_rects": [
{
"x": 0,
"y": 63,
"w": 604,
"h": 338
},
{
"x": 0,
"y": 0,
"w": 604,
"h": 604
},
{
"x": 23,
"y": 0,
"w": 543,
"h": 619
},
{
"x": 139,
"y": 0,
"w": 310,
"h": 619
},
{
"x": 0,
"y": 0,
"w": 604,
"h": 619
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973153067391651840"
}
}
},
{
"display_url": "pic.x.com/qfYcjSO0GI",
"expanded_url": "https://x.com/MAGAVoice/status/1973153076883365940/photo/1",
"id_str": "1973153067383263232",
"indices": [
185,
208
],
"media_key": "3_1973153067383263232",
"media_url_https": "https://pbs.twimg.com/media/G2IMQrTaEAAQtXO.jpg",
"type": "photo",
"url": "https://t.co/qfYcjSO0GI",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1364,
"w": 1320,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 1161,
"resize": "fit"
},
"small": {
"h": 680,
"w": 658,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1364,
"width": 1320,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1320,
"h": 739
},
{
"x": 0,
"y": 0,
"w": 1320,
"h": 1320
},
{
"x": 0,
"y": 0,
"w": 1196,
"h": 1364
},
{
"x": 169,
"y": 0,
"w": 682,
"h": 1364
},
{
"x": 0,
"y": 0,
"w": 1320,
"h": 1364
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973153067383263232"
}
}
}
]
},
"favorite_count": 149136,
"favorited": false,
"full_text": "BREAKING 🚨 After Elon Musk told his 226 million followers he’s CANCELLING Netflix, the trend has gone VIRAL of people posting their cancelation\n\nIT’S TIME TO CANCEL AND BOYCOTT NETFLIX https://t.co/qfYcjSO0GI",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 1080,
"reply_count": 6617,
"retweet_count": 27031,
"retweeted": false,
"user_id_str": "1663701168839872512",
"id_str": "1973153076883365940"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973295485344686527",
"sortIndex": "1973353912849137657",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973295485344686527",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973295485344686527"
],
"editable_until_msecs": "1759308880420",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:54:40 +0000 2025",
"conversation_id_str": "1973295485344686527",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1874178374664323072",
"name": "Rep. Mark Harris",
"screen_name": "RepMarkHarrisNC",
"indices": [
3,
19
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @RepMarkHarrisNC: Iryna Zarutska's murderer was arrested 14 TIMES before killing her.\n\nLogan Federico's murderer was arrested 39 TIMES b…",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 11637,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973295485344686527",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1972843091557024209",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODc0MTc4Mzc0NjY0MzIzMDcy",
"rest_id": "1874178374664323072",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/HouseGOP",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1877085039948668928/f4AibqzY_bigger.jpg"
},
"description": "House Republicans",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Dec 31 19:38:58 +0000 2024",
"default_profile": true,
"default_profile_image": false,
"description": "Proudly Representing North Carolina’s 8th Congressional District 🇺🇸 @HouseAgGop @JudiciaryGOP @EdWorkforceCmte",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "markharris.house.gov",
"expanded_url": "https://markharris.house.gov/",
"url": "https://t.co/awpS6vYMMO",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3064,
"followers_count": 11357,
"friends_count": 866,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 139,
"location": "Washington, DC",
"media_count": 532,
"name": "Rep. Mark Harris",
"normal_followers_count": 11357,
"pinned_tweet_ids_str": [
"1970131395579199777"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1874178374664323072/1736041310",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1874178663303745536/Y2ttgCAw_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "RepMarkHarrisNC",
"statuses_count": 1608,
"translator_type": "none",
"url": "https://t.co/awpS6vYMMO",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1972843091557024209"
],
"editable_until_msecs": "1759201021000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "819688",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://studio.twitter.com\" rel=\"nofollow\">Twitter Media Studio</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 855,
"bookmarked": false,
"created_at": "Tue Sep 30 01:57:01 +0000 2025",
"conversation_id_str": "1972843091557024209",
"display_text_range": [
0,
239
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/9tRpmbHknK",
"expanded_url": "https://x.com/RepMarkHarrisNC/status/1972843091557024209/video/1",
"id_str": "1972839098399297536",
"indices": [
240,
263
],
"media_key": "13_1972839098399297536",
"media_url_https": "https://pbs.twimg.com/media/G2DxnoHWcAEskcS.jpg",
"type": "video",
"url": "https://t.co/9tRpmbHknK",
"additional_media_info": {
"title": "",
"description": "",
"embeddable": true,
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 464,
"w": 848,
"resize": "fit"
},
"medium": {
"h": 464,
"w": 848,
"resize": "fit"
},
"small": {
"h": 372,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 464,
"width": 848,
"focus_rects": []
},
"allow_download_status": {
"allow_download": false
},
"video_info": {
"aspect_ratio": [
53,
29
],
"duration_millis": 109266,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1972839098399297536/pl/umJpilQ67_MYBaI4.m3u8?tag=21&v=d25"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972839098399297536/vid/avc1/492x270/rAyXIWeiNT7wwtMm.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972839098399297536/vid/avc1/848x464/oKzvWr-hPqZdrcde.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1972839098399297536"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "56413858",
"name": "FOX Business",
"screen_name": "FoxBusiness",
"indices": [
227,
239
]
}
]
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/9tRpmbHknK",
"expanded_url": "https://x.com/RepMarkHarrisNC/status/1972843091557024209/video/1",
"id_str": "1972839098399297536",
"indices": [
240,
263
],
"media_key": "13_1972839098399297536",
"media_url_https": "https://pbs.twimg.com/media/G2DxnoHWcAEskcS.jpg",
"type": "video",
"url": "https://t.co/9tRpmbHknK",
"additional_media_info": {
"title": "",
"description": "",
"embeddable": true,
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 464,
"w": 848,
"resize": "fit"
},
"medium": {
"h": 464,
"w": 848,
"resize": "fit"
},
"small": {
"h": 372,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 464,
"width": 848,
"focus_rects": []
},
"allow_download_status": {
"allow_download": false
},
"video_info": {
"aspect_ratio": [
53,
29
],
"duration_millis": 109266,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1972839098399297536/pl/umJpilQ67_MYBaI4.m3u8?tag=21&v=d25"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972839098399297536/vid/avc1/492x270/rAyXIWeiNT7wwtMm.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972839098399297536/vid/avc1/848x464/oKzvWr-hPqZdrcde.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1972839098399297536"
}
}
}
]
},
"favorite_count": 48679,
"favorited": false,
"full_text": "Iryna Zarutska's murderer was arrested 14 TIMES before killing her.\n\nLogan Federico's murderer was arrested 39 TIMES before killing her.\n\nLack of funding and law enforcement is not the issue — pro-crime Democrat policies are.\n\n@FoxBusiness https://t.co/9tRpmbHknK",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 201,
"reply_count": 850,
"retweet_count": 11637,
"retweeted": false,
"user_id_str": "1874178374664323072",
"id_str": "1972843091557024209"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973294883814383685",
"sortIndex": "1973353912849137656",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973294883814383685",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973294883814383685"
],
"editable_until_msecs": "1759308737004",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:52:17 +0000 2025",
"conversation_id_str": "1973294883814383685",
"display_text_range": [
0,
23
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1587601034339561472",
"name": "Tetsuo",
"screen_name": "tetsuoai",
"indices": [
3,
12
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @tetsuoai: MACROHARD",
"is_quote_status": false,
"lang": "fr",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 231,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973294883814383685",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973225612732244272",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNTg3NjAxMDM0MzM5NTYxNDcy",
"rest_id": "1587601034339561472",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed Nov 02 00:22:51 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "Low-level dev since '94 | CS/Math & C/Assembly\nProjects: @7etsuo @beeldcoin @groktprompt\n\nc/asm 🇺🇸",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "tetsuoproject.com",
"expanded_url": "https://www.tetsuoproject.com",
"url": "https://t.co/0h5yrXKNo2",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 122707,
"followers_count": 212430,
"friends_count": 1297,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 881,
"location": "Neo Tokyo",
"media_count": 3184,
"name": "Tetsuo",
"normal_followers_count": 212430,
"pinned_tweet_ids_str": [
"1972879056803958976"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1587601034339561472/1751822202",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1941908983314362368/Wbfh_wgx_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "tetsuoai",
"statuses_count": 12742,
"translator_type": "none",
"url": "https://t.co/0h5yrXKNo2",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1603858867515174912",
"professional_type": "Business",
"category": [
{
"id": 715,
"name": "Software Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "bc1qpurp542vwmncs4ktr46yghhjrnzmpy2ug4jvpe",
"ethereum_handle": "0xA4809b3247F76dF79C0F8D0C9464bef997dF482F",
"patreon_handle": "7etsuo"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973225612732244272"
],
"editable_until_msecs": "1759292221000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "499910",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 37,
"bookmarked": false,
"created_at": "Wed Oct 01 03:17:01 +0000 2025",
"conversation_id_str": "1973225612732244272",
"display_text_range": [
0,
9
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 1640,
"favorited": false,
"full_text": "MACROHARD",
"is_quote_status": false,
"lang": "fr",
"quote_count": 31,
"reply_count": 176,
"retweet_count": 231,
"retweeted": false,
"user_id_str": "1587601034339561472",
"id_str": "1973225612732244272"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973294528254844976",
"sortIndex": "1973353912849137655",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973294528254844976",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973294528254844976"
],
"editable_until_msecs": "1759308652232",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:50:52 +0000 2025",
"conversation_id_str": "1973294528254844976",
"display_text_range": [
0,
139
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1881451105454002176",
"name": "Rapid Response 47",
"screen_name": "RapidResponse47",
"indices": [
3,
19
]
},
{
"id_str": "1883257372740591616",
"name": "Secretary of War Pete Hegseth",
"screen_name": "SecWar",
"indices": [
22,
29
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @RapidResponse47: .@SecWar: \"If women can make it, excellent. If not, it is what it is... It will also mean that weak men won't qualify…",
"is_quote_status": true,
"lang": "en",
"quote_count": 0,
"quoted_status_id_str": "1973006492405240086",
"quoted_status_permalink": {
"url": "https://t.co/mxkLUwvnDg",
"expanded": "https://twitter.com/RapidResponse47/status/1973006492405240086",
"display": "x.com/RapidResponse4…"
},
"reply_count": 0,
"retweet_count": 7573,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973294528254844976",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973007611198107694",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODgxNDUxMTA1NDU0MDAyMTc2",
"rest_id": "1881451105454002176",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/WhiteHouse",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1916971216620982274/1DsLEcqW_bigger.jpg"
},
"description": "The White House",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Mon Jan 20 21:18:05 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "Official White House Rapid Response account. Supporting @POTUS's America First agenda and holding the Fake News accountable. MAGA!",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "wh.gov",
"expanded_url": "http://wh.gov",
"url": "https://t.co/8qhSUMpp7C",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 186,
"followers_count": 1248202,
"friends_count": 58,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 4320,
"location": "🇺🇸🇺🇸🇺🇸",
"media_count": 10066,
"name": "Rapid Response 47",
"normal_followers_count": 1248202,
"pinned_tweet_ids_str": [
"1969155493701571049"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1881451105454002176/1748989837",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1883970867215876096/HK4lwY1m_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "RapidResponse47",
"statuses_count": 15949,
"translator_type": "none",
"url": "https://t.co/8qhSUMpp7C",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973007611198107694"
],
"editable_until_msecs": "1759240245000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "4553793",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973006492405240086",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODgxNDUxMTA1NDU0MDAyMTc2",
"rest_id": "1881451105454002176",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/WhiteHouse",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1916971216620982274/1DsLEcqW_bigger.jpg"
},
"description": "The White House",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Mon Jan 20 21:18:05 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "Official White House Rapid Response account. Supporting @POTUS's America First agenda and holding the Fake News accountable. MAGA!",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "wh.gov",
"expanded_url": "http://wh.gov",
"url": "https://t.co/8qhSUMpp7C",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 186,
"followers_count": 1248202,
"friends_count": 58,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 4320,
"location": "🇺🇸🇺🇸🇺🇸",
"media_count": 10066,
"name": "Rapid Response 47",
"normal_followers_count": 1248202,
"pinned_tweet_ids_str": [
"1969155493701571049"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1881451105454002176/1748989837",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1883970867215876096/HK4lwY1m_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "RapidResponse47",
"statuses_count": 15949,
"translator_type": "none",
"url": "https://t.co/8qhSUMpp7C",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973006492405240086"
],
"editable_until_msecs": "1759239979000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "4587850",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 908,
"bookmarked": false,
"created_at": "Tue Sep 30 12:46:19 +0000 2025",
"conversation_id_str": "1973006492405240086",
"display_text_range": [
0,
269
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/diAHWfKOBY",
"expanded_url": "https://x.com/RapidResponse47/status/1973006492405240086/video/1",
"id_str": "1973005352653205504",
"indices": [
270,
293
],
"media_key": "13_1973005352653205504",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973005352653205504/img/ATk-jPZbuqrEx4NF.jpg",
"type": "video",
"url": "https://t.co/diAHWfKOBY",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 233523,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/pl/G38AgXmTvtl68Y-j.m3u8?tag=21&v=6f6"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/vid/avc1/480x270/06NlvKUgouSg2qFO.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/vid/avc1/640x360/IX32XjD7l7eUdy8m.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/vid/avc1/1280x720/263-gjyIWjPkb_h1.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973005352653205504"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1883257372740591616",
"name": "Secretary of War Pete Hegseth",
"screen_name": "SecWar",
"indices": [
1,
8
]
}
]
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/diAHWfKOBY",
"expanded_url": "https://x.com/RapidResponse47/status/1973006492405240086/video/1",
"id_str": "1973005352653205504",
"indices": [
270,
293
],
"media_key": "13_1973005352653205504",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973005352653205504/img/ATk-jPZbuqrEx4NF.jpg",
"type": "video",
"url": "https://t.co/diAHWfKOBY",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 233523,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/pl/G38AgXmTvtl68Y-j.m3u8?tag=21&v=6f6"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/vid/avc1/480x270/06NlvKUgouSg2qFO.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/vid/avc1/640x360/IX32XjD7l7eUdy8m.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/vid/avc1/1280x720/263-gjyIWjPkb_h1.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973005352653205504"
}
}
}
]
},
"favorite_count": 14968,
"favorited": false,
"full_text": ".@SecWar announces new directives to ensure that every military Combat MOS and Combat Arms position will return \"to the highest male standard only — because this job is life or death.\"\n\n\"Standards must be met... it's common sense and core to who we are and what we do.\" https://t.co/diAHWfKOBY",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 329,
"reply_count": 916,
"retweet_count": 2842,
"retweeted": false,
"user_id_str": "1881451105454002176",
"id_str": "1973006492405240086"
}
}
},
"legacy": {
"bookmark_count": 2239,
"bookmarked": false,
"created_at": "Tue Sep 30 12:50:45 +0000 2025",
"conversation_id_str": "1973007611198107694",
"display_text_range": [
0,
192
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/sUm0DmvfvC",
"expanded_url": "https://x.com/RapidResponse47/status/1973007611198107694/video/1",
"id_str": "1973006710966018048",
"indices": [
193,
216
],
"media_key": "13_1973006710966018048",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973006710966018048/img/CxBWu_NI_weWekcW.jpg",
"type": "video",
"url": "https://t.co/sUm0DmvfvC",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 82036,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/pl/v1KrLTxdUUbEOyb5.m3u8?tag=21&v=30f"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/vid/avc1/480x270/hNXEkN33M-sORaLe.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/vid/avc1/640x360/EJ1F7bL7_8Ru5xSb.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/vid/avc1/1280x720/eDejj_E2boN1MD7g.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973006710966018048"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1883257372740591616",
"name": "Secretary of War Pete Hegseth",
"screen_name": "SecWar",
"indices": [
1,
8
]
}
]
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/sUm0DmvfvC",
"expanded_url": "https://x.com/RapidResponse47/status/1973007611198107694/video/1",
"id_str": "1973006710966018048",
"indices": [
193,
216
],
"media_key": "13_1973006710966018048",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973006710966018048/img/CxBWu_NI_weWekcW.jpg",
"type": "video",
"url": "https://t.co/sUm0DmvfvC",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 82036,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/pl/v1KrLTxdUUbEOyb5.m3u8?tag=21&v=30f"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/vid/avc1/480x270/hNXEkN33M-sORaLe.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/vid/avc1/640x360/EJ1F7bL7_8Ru5xSb.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/vid/avc1/1280x720/eDejj_E2boN1MD7g.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973006710966018048"
}
}
}
]
},
"favorite_count": 50839,
"favorited": false,
"full_text": ".@SecWar: \"If women can make it, excellent. If not, it is what it is... It will also mean that weak men won't qualify — because we're not playing games. This is combat. This is life or death.\" https://t.co/sUm0DmvfvC",
"is_quote_status": true,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 662,
"quoted_status_id_str": "1973006492405240086",
"quoted_status_permalink": {
"url": "https://t.co/mxkLUwvnDg",
"expanded": "https://twitter.com/RapidResponse47/status/1973006492405240086",
"display": "x.com/RapidResponse4…"
},
"reply_count": 1535,
"retweet_count": 7573,
"retweeted": false,
"user_id_str": "1881451105454002176",
"id_str": "1973007611198107694"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973293568166101058",
"sortIndex": "1973353912849137654",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973293568166101058",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973293568166101058"
],
"editable_until_msecs": "1759308423329",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:47:03 +0000 2025",
"conversation_id_str": "1973293568166101058",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1879644163769335808",
"name": "The White House",
"screen_name": "WhiteHouse",
"indices": [
3,
14
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @WhiteHouse: The Democrat Party wants:\n\n❌ Open borders \n❌ ‘Transgender’ for everybody\n❌ Men competing in women’s sports\n❌ Crime and lawl…",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 4227,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973293568166101058",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973113142667518389",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODc5NjQ0MTYzNzY5MzM1ODA4",
"rest_id": "1879644163769335808",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Jan 15 21:37:54 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "The Golden Age of America Begins Right Now.\n📱 Text USA to 45470 to receive alerts.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "wh.gov",
"expanded_url": "http://wh.gov",
"url": "https://t.co/0BqS4u1FRp",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 237,
"followers_count": 2816148,
"friends_count": 6,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 5604,
"location": "Washington, DC",
"media_count": 2641,
"name": "The White House",
"normal_followers_count": 2816148,
"pinned_tweet_ids_str": [
"1969783747139514536"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1879644163769335808/1745877308",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1916971216620982274/1DsLEcqW_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "WhiteHouse",
"statuses_count": 8629,
"translator_type": "none",
"url": "https://t.co/0BqS4u1FRp",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973113142667518389"
],
"editable_until_msecs": "1759265406000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1218960",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 710,
"bookmarked": false,
"created_at": "Tue Sep 30 19:50:06 +0000 2025",
"conversation_id_str": "1973113142667518389",
"display_text_range": [
0,
240
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 24693,
"favorited": false,
"full_text": "The Democrat Party wants:\n\n❌ Open borders \n❌ ‘Transgender’ for everybody\n❌ Men competing in women’s sports\n❌ Crime and lawlessness in our streets\n❌ Cashless bail policies over the safety and security of our nation\n\nIt's never America First.",
"is_quote_status": false,
"lang": "en",
"quote_count": 504,
"reply_count": 2032,
"retweet_count": 4227,
"retweeted": false,
"user_id_str": "1879644163769335808",
"id_str": "1973113142667518389"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973293490072330355",
"sortIndex": "1973353912849137653",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973293490072330355",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973293490072330355"
],
"editable_until_msecs": "1759308404710",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:46:44 +0000 2025",
"conversation_id_str": "1973293490072330355",
"display_text_range": [
0,
127
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/fmkbPNO457",
"expanded_url": "https://x.com/tetsuoai/status/1973188422945894747/photo/1",
"id_str": "1973188098680037380",
"indices": [
104,
127
],
"media_key": "3_1973188098680037380",
"media_url_https": "https://pbs.twimg.com/media/G2IsHxDaIAQi6p4.jpg",
"source_status_id_str": "1973188422945894747",
"source_user_id_str": "1587601034339561472",
"type": "photo",
"url": "https://t.co/fmkbPNO457",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1278,
"w": 1562,
"resize": "fit"
},
"medium": {
"h": 982,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 556,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1278,
"width": 1562,
"focus_rects": [
{
"x": 0,
"y": 382,
"w": 1562,
"h": 875
},
{
"x": 0,
"y": 0,
"w": 1278,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1121,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 639,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1562,
"h": 1278
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973188098680037380"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1587601034339561472",
"name": "Tetsuo",
"screen_name": "tetsuoai",
"indices": [
3,
12
]
}
]
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/fmkbPNO457",
"expanded_url": "https://x.com/tetsuoai/status/1973188422945894747/photo/1",
"id_str": "1973188098680037380",
"indices": [
104,
127
],
"media_key": "3_1973188098680037380",
"media_url_https": "https://pbs.twimg.com/media/G2IsHxDaIAQi6p4.jpg",
"source_status_id_str": "1973188422945894747",
"source_user_id_str": "1587601034339561472",
"type": "photo",
"url": "https://t.co/fmkbPNO457",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1278,
"w": 1562,
"resize": "fit"
},
"medium": {
"h": 982,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 556,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1278,
"width": 1562,
"focus_rects": [
{
"x": 0,
"y": 382,
"w": 1562,
"h": 875
},
{
"x": 0,
"y": 0,
"w": 1278,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1121,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 639,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1562,
"h": 1278
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973188098680037380"
}
}
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @tetsuoai: Grok Code Fast 1 and Grok 4 Fast are still holding the #1 and #2 positions on OpenRouter. https://t.co/fmkbPNO457",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 0,
"reply_count": 0,
"retweet_count": 257,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973293490072330355",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973188422945894747",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNTg3NjAxMDM0MzM5NTYxNDcy",
"rest_id": "1587601034339561472",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed Nov 02 00:22:51 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "Low-level dev since '94 | CS/Math & C/Assembly\nProjects: @7etsuo @beeldcoin @groktprompt\n\nc/asm 🇺🇸",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "tetsuoproject.com",
"expanded_url": "https://www.tetsuoproject.com",
"url": "https://t.co/0h5yrXKNo2",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 122707,
"followers_count": 212430,
"friends_count": 1297,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 881,
"location": "Neo Tokyo",
"media_count": 3184,
"name": "Tetsuo",
"normal_followers_count": 212430,
"pinned_tweet_ids_str": [
"1972879056803958976"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1587601034339561472/1751822202",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1941908983314362368/Wbfh_wgx_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "tetsuoai",
"statuses_count": 12742,
"translator_type": "none",
"url": "https://t.co/0h5yrXKNo2",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1603858867515174912",
"professional_type": "Business",
"category": [
{
"id": 715,
"name": "Software Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "bc1qpurp542vwmncs4ktr46yghhjrnzmpy2ug4jvpe",
"ethereum_handle": "0xA4809b3247F76dF79C0F8D0C9464bef997dF482F",
"patreon_handle": "7etsuo"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973188422945894747"
],
"editable_until_msecs": "1759283354000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "483976",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 50,
"bookmarked": false,
"created_at": "Wed Oct 01 00:49:14 +0000 2025",
"conversation_id_str": "1973188422945894747",
"display_text_range": [
0,
89
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/fmkbPNO457",
"expanded_url": "https://x.com/tetsuoai/status/1973188422945894747/photo/1",
"id_str": "1973188098680037380",
"indices": [
90,
113
],
"media_key": "3_1973188098680037380",
"media_url_https": "https://pbs.twimg.com/media/G2IsHxDaIAQi6p4.jpg",
"type": "photo",
"url": "https://t.co/fmkbPNO457",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1278,
"w": 1562,
"resize": "fit"
},
"medium": {
"h": 982,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 556,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1278,
"width": 1562,
"focus_rects": [
{
"x": 0,
"y": 382,
"w": 1562,
"h": 875
},
{
"x": 0,
"y": 0,
"w": 1278,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1121,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 639,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1562,
"h": 1278
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973188098680037380"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/fmkbPNO457",
"expanded_url": "https://x.com/tetsuoai/status/1973188422945894747/photo/1",
"id_str": "1973188098680037380",
"indices": [
90,
113
],
"media_key": "3_1973188098680037380",
"media_url_https": "https://pbs.twimg.com/media/G2IsHxDaIAQi6p4.jpg",
"type": "photo",
"url": "https://t.co/fmkbPNO457",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1278,
"w": 1562,
"resize": "fit"
},
"medium": {
"h": 982,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 556,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1278,
"width": 1562,
"focus_rects": [
{
"x": 0,
"y": 382,
"w": 1562,
"h": 875
},
{
"x": 0,
"y": 0,
"w": 1278,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1121,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 639,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1562,
"h": 1278
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973188098680037380"
}
}
}
]
},
"favorite_count": 1378,
"favorited": false,
"full_text": "Grok Code Fast 1 and Grok 4 Fast are still holding the #1 and #2 positions on OpenRouter. https://t.co/fmkbPNO457",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 6,
"reply_count": 118,
"retweet_count": 257,
"retweeted": false,
"user_id_str": "1587601034339561472",
"id_str": "1973188422945894747"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973293457369342394",
"sortIndex": "1973353912849137652",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973293457369342394",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973293457369342394"
],
"editable_until_msecs": "1759308396913",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:46:36 +0000 2025",
"conversation_id_str": "1973293457369342394",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "816683274076614656",
"name": "John Kennedy",
"screen_name": "SenJohnKennedy",
"indices": [
3,
18
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @SenJohnKennedy: The loon wing of the Democratic Party thinks that if a cop has to shoot a criminal, it’s automatically the cop’s fault.…",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 6635,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973293457369342394",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973187355361030174",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo4MTY2ODMyNzQwNzY2MTQ2NTY=",
"rest_id": "816683274076614656",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/SenateGOP",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1924453133050122240/LnQNgj1x_bigger.jpg"
},
"description": "Senate Republicans",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Jan 04 16:30:40 +0000 2017",
"default_profile": true,
"default_profile_image": false,
"description": "Official account of U.S. Senator John Kennedy of Louisiana. Facebook: https://t.co/1Tq61Jy0Gi Instagram: https://t.co/OdPLA7x1ZS",
"entities": {
"description": {
"urls": [
{
"display_url": "facebook.com/SenatorJohnKen…",
"expanded_url": "http://facebook.com/SenatorJohnKennedy",
"url": "https://t.co/1Tq61Jy0Gi",
"indices": [
70,
93
]
},
{
"display_url": "instagram.com/senjohnkennedy",
"expanded_url": "http://instagram.com/senjohnkennedy",
"url": "https://t.co/OdPLA7x1ZS",
"indices": [
105,
128
]
}
]
},
"url": {
"urls": [
{
"display_url": "kennedy.senate.gov",
"expanded_url": "https://www.kennedy.senate.gov/",
"url": "https://t.co/ZZnq2vhAXw",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 685,
"followers_count": 1612422,
"friends_count": 1338,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 3421,
"location": "Louisiana",
"media_count": 2549,
"name": "John Kennedy",
"normal_followers_count": 1612422,
"pinned_tweet_ids_str": [
"1395854377278218242"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/816683274076614656/1608232124",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "SenJohnKennedy",
"statuses_count": 6431,
"translator_type": "none",
"url": "https://t.co/ZZnq2vhAXw",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973187355361030174"
],
"editable_until_msecs": "1759283100000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "832307",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://studio.twitter.com\" rel=\"nofollow\">Twitter Media Studio</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 911,
"bookmarked": false,
"created_at": "Wed Oct 01 00:45:00 +0000 2025",
"conversation_id_str": "1973187355361030174",
"display_text_range": [
0,
276
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/Ue4c3B84Tz",
"expanded_url": "https://x.com/SenJohnKennedy/status/1973187355361030174/video/1",
"id_str": "1973168174842478592",
"indices": [
277,
300
],
"media_key": "13_1973168174842478592",
"media_url_https": "https://pbs.twimg.com/media/G2IaOHEXMAA2W7w.jpg",
"type": "video",
"url": "https://t.co/Ue4c3B84Tz",
"additional_media_info": {
"title": "",
"description": "",
"embeddable": true,
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 790,
"w": 1408,
"resize": "fit"
},
"medium": {
"h": 673,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 382,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 790,
"width": 1408,
"focus_rects": []
},
"allow_download_status": {
"allow_download": false
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 120578,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/pl/M47pX9zcj4lJt88I.m3u8?tag=21&v=a0f"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/480x270/b7c5d99hW3KRokQo.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/640x360/Bj0YdYS0fJcKKXRc.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/1280x720/RfUdHFvo41VqWKpS.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/1920x1080/QtKNlhASJ5jpC1Hf.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973168174842478592"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/Ue4c3B84Tz",
"expanded_url": "https://x.com/SenJohnKennedy/status/1973187355361030174/video/1",
"id_str": "1973168174842478592",
"indices": [
277,
300
],
"media_key": "13_1973168174842478592",
"media_url_https": "https://pbs.twimg.com/media/G2IaOHEXMAA2W7w.jpg",
"type": "video",
"url": "https://t.co/Ue4c3B84Tz",
"additional_media_info": {
"title": "",
"description": "",
"embeddable": true,
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 790,
"w": 1408,
"resize": "fit"
},
"medium": {
"h": 673,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 382,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 790,
"width": 1408,
"focus_rects": []
},
"allow_download_status": {
"allow_download": false
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 120578,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/pl/M47pX9zcj4lJt88I.m3u8?tag=21&v=a0f"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/480x270/b7c5d99hW3KRokQo.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/640x360/Bj0YdYS0fJcKKXRc.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/1280x720/RfUdHFvo41VqWKpS.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/1920x1080/QtKNlhASJ5jpC1Hf.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973168174842478592"
}
}
}
]
},
"favorite_count": 37475,
"favorited": false,
"full_text": "The loon wing of the Democratic Party thinks that if a cop has to shoot a criminal, it’s automatically the cop’s fault.\n\nBut if a criminal shoots a cop, they think it’s the gun’s fault.\n\nAs long as the far left is running our nation’s cities, we’ll have a major crime problem. https://t.co/Ue4c3B84Tz",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 111,
"reply_count": 559,
"retweet_count": 6635,
"retweeted": false,
"user_id_str": "816683274076614656",
"id_str": "1973187355361030174"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973292752118096034",
"sortIndex": "1973353912849137651",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973292752118096034",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973292752118096034"
],
"editable_until_msecs": "1759308228000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1445358",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 1290,
"bookmarked": false,
"created_at": "Wed Oct 01 07:43:48 +0000 2025",
"conversation_id_str": "1973292752118096034",
"display_text_range": [
0,
29
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/VErf7eZB26",
"expanded_url": "https://x.com/EricLDaugh/status/1973003991035367757/video/1",
"id_str": "1973003718070059008",
"indices": [
6,
29
],
"media_key": "13_1973003718070059008",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973003718070059008/img/TZ9vqq15RLO106g5.jpg",
"source_status_id_str": "1973003991035367757",
"source_user_id_str": "763094579491008512",
"type": "video",
"url": "https://t.co/VErf7eZB26",
"additional_media_info": {
"monetizable": false,
"source_user": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo3NjMwOTQ1Nzk0OTEwMDg1MTI=",
"rest_id": "763094579491008512",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Aug 09 19:28:20 +0000 2016",
"default_profile": true,
"default_profile_image": false,
"description": "Assistant News Director @FLVoiceNews | Marylander-turned-Floridian | Politics & breaking news alerts | https://t.co/55cqQGUClp | “Men must vote” - Charlie Kirk",
"entities": {
"description": {
"urls": [
{
"display_url": "flvoicenews.com",
"expanded_url": "http://flvoicenews.com",
"url": "https://t.co/55cqQGUClp",
"indices": [
103,
126
]
}
]
},
"url": {
"urls": [
{
"display_url": "ericdaugherty.net",
"expanded_url": "http://ericdaugherty.net",
"url": "https://t.co/9JrzFB6FPm",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 114784,
"followers_count": 635328,
"friends_count": 2248,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 2571,
"location": "",
"media_count": 22447,
"name": "Eric Daugherty",
"normal_followers_count": 635328,
"pinned_tweet_ids_str": [
"1973003991035367757"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/763094579491008512/1651332472",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1946702115037908992/NU6Ro1bl_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "EricLDaugh",
"statuses_count": 52661,
"translator_type": "none",
"url": "https://t.co/9JrzFB6FPm",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1480980230751854594",
"professional_type": "Creator",
"category": [
{
"id": 933,
"name": "Media Personality",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "39v2q5qoa7MQ4UPtAf7TzgYggtLF3v3nLD",
"cash_app_handle": "ELDaugh",
"venmo_handle": "ericldaugh"
},
"super_follow_eligible": true
}
}
}
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 1080,
"w": 1920,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1080,
"width": 1920,
"focus_rects": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 69366,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973003718070059008/pl/xG50b3UYoEGotJpP.m3u8?tag=21&v=cfc"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973003718070059008/vid/avc1/480x270/9MJOOx0yrD6iGGPk.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973003718070059008/vid/avc1/640x360/zG44RPT95x7H75PY.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973003718070059008/vid/avc1/1280x720/KwQ78UPkS-bfeosp.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973003718070059008/vid/avc1/1920x1080/yW_0Qqpi_eUPIlbc.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973003718070059008"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/VErf7eZB26",
"expanded_url": "https://x.com/EricLDaugh/status/1973003991035367757/video/1",
"id_str": "1973003718070059008",
"indices": [
6,
29
],
"media_key": "13_1973003718070059008",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973003718070059008/img/TZ9vqq15RLO106g5.jpg",
"source_status_id_str": "1973003991035367757",
"source_user_id_str": "763094579491008512",
"type": "video",
"url": "https://t.co/VErf7eZB26",
"additional_media_info": {
"monetizable": false,
"source_user": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo3NjMwOTQ1Nzk0OTEwMDg1MTI=",
"rest_id": "763094579491008512",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Aug 09 19:28:20 +0000 2016",
"default_profile": true,
"default_profile_image": false,
"description": "Assistant News Director @FLVoiceNews | Marylander-turned-Floridian | Politics & breaking news alerts | https://t.co/55cqQGUClp | “Men must vote” - Charlie Kirk",
"entities": {
"description": {
"urls": [
{
"display_url": "flvoicenews.com",
"expanded_url": "http://flvoicenews.com",
"url": "https://t.co/55cqQGUClp",
"indices": [
103,
126
]
}
]
},
"url": {
"urls": [
{
"display_url": "ericdaugherty.net",
"expanded_url": "http://ericdaugherty.net",
"url": "https://t.co/9JrzFB6FPm",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 114784,
"followers_count": 635328,
"friends_count": 2248,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 2571,
"location": "",
"media_count": 22447,
"name": "Eric Daugherty",
"normal_followers_count": 635328,
"pinned_tweet_ids_str": [
"1973003991035367757"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/763094579491008512/1651332472",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1946702115037908992/NU6Ro1bl_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "EricLDaugh",
"statuses_count": 52661,
"translator_type": "none",
"url": "https://t.co/9JrzFB6FPm",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1480980230751854594",
"professional_type": "Creator",
"category": [
{
"id": 933,
"name": "Media Personality",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "39v2q5qoa7MQ4UPtAf7TzgYggtLF3v3nLD",
"cash_app_handle": "ELDaugh",
"venmo_handle": "ericldaugh"
},
"super_follow_eligible": true
}
}
}
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 1080,
"w": 1920,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1080,
"width": 1920,
"focus_rects": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 69366,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973003718070059008/pl/xG50b3UYoEGotJpP.m3u8?tag=21&v=cfc"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973003718070059008/vid/avc1/480x270/9MJOOx0yrD6iGGPk.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973003718070059008/vid/avc1/640x360/zG44RPT95x7H75PY.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973003718070059008/vid/avc1/1280x720/KwQ78UPkS-bfeosp.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973003718070059008/vid/avc1/1920x1080/yW_0Qqpi_eUPIlbc.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973003718070059008"
}
}
}
]
},
"favorite_count": 43388,
"favorited": false,
"full_text": "Good\n https://t.co/VErf7eZB26",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 217,
"reply_count": 2184,
"retweet_count": 4699,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973292752118096034"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973292474375479556",
"sortIndex": "1973353912849137650",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973292474375479556",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973292474375479556"
],
"editable_until_msecs": "1759308162000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "16332914",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973213716133908905",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzg5OTEzNTY3NjcxOTc1OTM3",
"rest_id": "1389913567671975937",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/MyDoge",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1656530956801523719/SC7nEKMa_bigger.png"
},
"description": "MyDoge",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Wed May 05 12:03:43 +0000 2021",
"default_profile": true,
"default_profile_image": false,
"description": "https://t.co/YDjS4ElXd6",
"entities": {
"description": {
"urls": [
{
"display_url": "VoteTesla.com",
"expanded_url": "http://VoteTesla.com",
"url": "https://t.co/YDjS4ElXd6",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 110394,
"followers_count": 1740097,
"friends_count": 997,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 5822,
"location": "",
"media_count": 29385,
"name": "DogeDesigner",
"normal_followers_count": 1740097,
"pinned_tweet_ids_str": [
"1821687464974860662"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1389913567671975937/1711058670",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1498070100393754625/C2V-fbll_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "cb_doge",
"statuses_count": 52614,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1463329767675944960",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": true
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973213716133908905"
],
"editable_until_msecs": "1759289385000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "16598407",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 678,
"bookmarked": false,
"created_at": "Wed Oct 01 02:29:45 +0000 2025",
"conversation_id_str": "1973213716133908905",
"display_text_range": [
0,
34
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/DstKHfuqeq",
"expanded_url": "https://x.com/cb_doge/status/1973213716133908905/photo/1",
"id_str": "1973213535703298048",
"indices": [
35,
58
],
"media_key": "3_1973213535703298048",
"media_url_https": "https://pbs.twimg.com/media/G2JDQZWWcAADFu8.jpg",
"type": "photo",
"url": "https://t.co/DstKHfuqeq",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 262,
"y": 348,
"h": 48,
"w": 48
}
]
},
"medium": {
"faces": [
{
"x": 262,
"y": 348,
"h": 48,
"w": 48
}
]
},
"small": {
"faces": [
{
"x": 262,
"y": 348,
"h": 48,
"w": 48
}
]
},
"orig": {
"faces": [
{
"x": 262,
"y": 348,
"h": 48,
"w": 48
}
]
}
},
"sizes": {
"large": {
"h": 671,
"w": 680,
"resize": "fit"
},
"medium": {
"h": 671,
"w": 680,
"resize": "fit"
},
"small": {
"h": 671,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 671,
"width": 680,
"focus_rects": [
{
"x": 0,
"y": 234,
"w": 680,
"h": 381
},
{
"x": 0,
"y": 0,
"w": 671,
"h": 671
},
{
"x": 0,
"y": 0,
"w": 589,
"h": 671
},
{
"x": 52,
"y": 0,
"w": 336,
"h": 671
},
{
"x": 0,
"y": 0,
"w": 680,
"h": 671
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973213535703298048"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/DstKHfuqeq",
"expanded_url": "https://x.com/cb_doge/status/1973213716133908905/photo/1",
"id_str": "1973213535703298048",
"indices": [
35,
58
],
"media_key": "3_1973213535703298048",
"media_url_https": "https://pbs.twimg.com/media/G2JDQZWWcAADFu8.jpg",
"type": "photo",
"url": "https://t.co/DstKHfuqeq",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 262,
"y": 348,
"h": 48,
"w": 48
}
]
},
"medium": {
"faces": [
{
"x": 262,
"y": 348,
"h": 48,
"w": 48
}
]
},
"small": {
"faces": [
{
"x": 262,
"y": 348,
"h": 48,
"w": 48
}
]
},
"orig": {
"faces": [
{
"x": 262,
"y": 348,
"h": 48,
"w": 48
}
]
}
},
"sizes": {
"large": {
"h": 671,
"w": 680,
"resize": "fit"
},
"medium": {
"h": 671,
"w": 680,
"resize": "fit"
},
"small": {
"h": 671,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 671,
"width": 680,
"focus_rects": [
{
"x": 0,
"y": 234,
"w": 680,
"h": 381
},
{
"x": 0,
"y": 0,
"w": 671,
"h": 671
},
{
"x": 0,
"y": 0,
"w": 589,
"h": 671
},
{
"x": 52,
"y": 0,
"w": 336,
"h": 671
},
{
"x": 0,
"y": 0,
"w": 680,
"h": 671
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973213535703298048"
}
}
}
]
},
"favorite_count": 24447,
"favorited": false,
"full_text": "Protect your kids.\nCancel Netflix. https://t.co/DstKHfuqeq",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 433,
"reply_count": 807,
"retweet_count": 5366,
"retweeted": false,
"user_id_str": "1389913567671975937",
"id_str": "1973213716133908905"
}
}
},
"legacy": {
"bookmark_count": 8696,
"bookmarked": false,
"created_at": "Wed Oct 01 07:42:42 +0000 2025",
"conversation_id_str": "1973292474375479556",
"display_text_range": [
0,
42
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 276524,
"favorited": false,
"full_text": "Cancel Netflix for the health of your kids",
"is_quote_status": true,
"lang": "en",
"quote_count": 1562,
"quoted_status_id_str": "1973213716133908905",
"quoted_status_permalink": {
"url": "https://t.co/uPcGiURaCp",
"expanded": "https://twitter.com/cb_doge/status/1973213716133908905",
"display": "x.com/cb_doge/status…"
},
"reply_count": 9081,
"retweet_count": 39695,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973292474375479556"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973290816077803614",
"sortIndex": "1973353912849137649",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973290816077803614",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973290816077803614"
],
"editable_until_msecs": "1759307767000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "4044617",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1972759597091061864",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMDI3MzUxNzgzMDcxMzQ2Njg4",
"rest_id": "1027351783071346688",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Thu Aug 09 00:32:07 +0000 2018",
"default_profile": false,
"default_profile_image": false,
"description": "Husband. Lefty. LIV. Golfer.\nCaptain, @HyFlyers_GC \nCo-Founder, @forwellness",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 5600,
"followers_count": 945411,
"friends_count": 448,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 2764,
"location": "",
"media_count": 276,
"name": "Phil Mickelson",
"normal_followers_count": 945411,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1027351783071346688/1706800811",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1032274611600154626/KEuVcvXp_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "PhilMickelson",
"statuses_count": 3844,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1689756220796604655",
"professional_type": "Creator",
"category": [
{
"id": 930,
"name": "Professional Athlete",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1972759597091061864"
],
"editable_until_msecs": "1759181114000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "6216900",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"quotedRefResult": {
"result": {
"__typename": "Tweet",
"rest_id": "1972718222681006339"
}
},
"legacy": {
"bookmark_count": 1773,
"bookmarked": false,
"created_at": "Mon Sep 29 20:25:14 +0000 2025",
"conversation_id_str": "1972759597091061864",
"display_text_range": [
0,
75
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 109528,
"favorited": false,
"full_text": "The judge(s) who let this person go should be held accountable and in jail.",
"is_quote_status": true,
"lang": "en",
"quote_count": 403,
"quoted_status_id_str": "1972718222681006339",
"quoted_status_permalink": {
"url": "https://t.co/mHftvWwig3",
"expanded": "https://twitter.com/defiantls/status/1972718222681006339",
"display": "x.com/defiantls/stat…"
},
"reply_count": 1828,
"retweet_count": 17116,
"retweeted": false,
"user_id_str": "1027351783071346688",
"id_str": "1972759597091061864"
}
}
},
"legacy": {
"bookmark_count": 156,
"bookmarked": false,
"created_at": "Wed Oct 01 07:36:07 +0000 2025",
"conversation_id_str": "1973290816077803614",
"display_text_range": [
0,
1
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 20976,
"favorited": false,
"full_text": "💯",
"is_quote_status": true,
"lang": "art",
"quote_count": 48,
"quoted_status_id_str": "1972759597091061864",
"quoted_status_permalink": {
"url": "https://t.co/U46gPWqcG5",
"expanded": "https://twitter.com/philmickelson/status/1972759597091061864",
"display": "x.com/philmickelson/…"
},
"reply_count": 955,
"retweet_count": 2146,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973290816077803614"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973290561022173195",
"sortIndex": "1973353912849137648",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973290561022173195",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973290561022173195"
],
"editable_until_msecs": "1759307706370",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:35:06 +0000 2025",
"conversation_id_str": "1973290561022173195",
"display_text_range": [
0,
77
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/3trLacB2dS",
"expanded_url": "https://x.com/EndWokeness/status/1973199290182103275/photo/1",
"id_str": "1973199284729221120",
"indices": [
54,
77
],
"media_key": "3_1973199284729221120",
"media_url_https": "https://pbs.twimg.com/media/G2I2S4VXEAAvFB8.jpg",
"source_status_id_str": "1973199290182103275",
"source_user_id_str": "1552795969959636992",
"type": "photo",
"url": "https://t.co/3trLacB2dS",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1139,
"w": 1169,
"resize": "fit"
},
"medium": {
"h": 1139,
"w": 1169,
"resize": "fit"
},
"small": {
"h": 663,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1139,
"width": 1169,
"focus_rects": [
{
"x": 0,
"y": 286,
"w": 1169,
"h": 655
},
{
"x": 0,
"y": 0,
"w": 1139,
"h": 1139
},
{
"x": 0,
"y": 0,
"w": 999,
"h": 1139
},
{
"x": 0,
"y": 0,
"w": 570,
"h": 1139
},
{
"x": 0,
"y": 0,
"w": 1169,
"h": 1139
}
]
},
"media_results": {
"result": {
"media_key": "3_1973199284729221120"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1552795969959636992",
"name": "End Wokeness",
"screen_name": "EndWokeness",
"indices": [
3,
15
]
}
]
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/3trLacB2dS",
"expanded_url": "https://x.com/EndWokeness/status/1973199290182103275/photo/1",
"id_str": "1973199284729221120",
"indices": [
54,
77
],
"media_key": "3_1973199284729221120",
"media_url_https": "https://pbs.twimg.com/media/G2I2S4VXEAAvFB8.jpg",
"source_status_id_str": "1973199290182103275",
"source_user_id_str": "1552795969959636992",
"type": "photo",
"url": "https://t.co/3trLacB2dS",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1139,
"w": 1169,
"resize": "fit"
},
"medium": {
"h": 1139,
"w": 1169,
"resize": "fit"
},
"small": {
"h": 663,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1139,
"width": 1169,
"focus_rects": [
{
"x": 0,
"y": 286,
"w": 1169,
"h": 655
},
{
"x": 0,
"y": 0,
"w": 1139,
"h": 1139
},
{
"x": 0,
"y": 0,
"w": 999,
"h": 1139
},
{
"x": 0,
"y": 0,
"w": 570,
"h": 1139
},
{
"x": 0,
"y": 0,
"w": 1169,
"h": 1139
}
]
},
"media_results": {
"result": {
"media_key": "3_1973199284729221120"
}
}
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @EndWokeness: Charlie Kirk on government shutdowns https://t.co/3trLacB2dS",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 0,
"reply_count": 0,
"retweet_count": 9028,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973290561022173195",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973199290182103275",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNTUyNzk1OTY5OTU5NjM2OTky",
"rest_id": "1552795969959636992",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Thu Jul 28 23:20:28 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "Fighting, exposing, and mocking wokeness. DM for submissions",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 17558,
"followers_count": 3915858,
"friends_count": 1312,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 8553,
"location": "",
"media_count": 10370,
"name": "End Wokeness",
"normal_followers_count": 3915858,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1552795969959636992/1720913469",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1563691268793946117/OedvhFeS_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "EndWokeness",
"statuses_count": 20796,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973199290182103275"
],
"editable_until_msecs": "1759285945000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1025048",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 1242,
"bookmarked": false,
"created_at": "Wed Oct 01 01:32:25 +0000 2025",
"conversation_id_str": "1973199290182103275",
"display_text_range": [
0,
36
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/3trLacB2dS",
"expanded_url": "https://x.com/EndWokeness/status/1973199290182103275/photo/1",
"id_str": "1973199284729221120",
"indices": [
37,
60
],
"media_key": "3_1973199284729221120",
"media_url_https": "https://pbs.twimg.com/media/G2I2S4VXEAAvFB8.jpg",
"type": "photo",
"url": "https://t.co/3trLacB2dS",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1139,
"w": 1169,
"resize": "fit"
},
"medium": {
"h": 1139,
"w": 1169,
"resize": "fit"
},
"small": {
"h": 663,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1139,
"width": 1169,
"focus_rects": [
{
"x": 0,
"y": 286,
"w": 1169,
"h": 655
},
{
"x": 0,
"y": 0,
"w": 1139,
"h": 1139
},
{
"x": 0,
"y": 0,
"w": 999,
"h": 1139
},
{
"x": 0,
"y": 0,
"w": 570,
"h": 1139
},
{
"x": 0,
"y": 0,
"w": 1169,
"h": 1139
}
]
},
"media_results": {
"result": {
"media_key": "3_1973199284729221120"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/3trLacB2dS",
"expanded_url": "https://x.com/EndWokeness/status/1973199290182103275/photo/1",
"id_str": "1973199284729221120",
"indices": [
37,
60
],
"media_key": "3_1973199284729221120",
"media_url_https": "https://pbs.twimg.com/media/G2I2S4VXEAAvFB8.jpg",
"type": "photo",
"url": "https://t.co/3trLacB2dS",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1139,
"w": 1169,
"resize": "fit"
},
"medium": {
"h": 1139,
"w": 1169,
"resize": "fit"
},
"small": {
"h": 663,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1139,
"width": 1169,
"focus_rects": [
{
"x": 0,
"y": 286,
"w": 1169,
"h": 655
},
{
"x": 0,
"y": 0,
"w": 1139,
"h": 1139
},
{
"x": 0,
"y": 0,
"w": 999,
"h": 1139
},
{
"x": 0,
"y": 0,
"w": 570,
"h": 1139
},
{
"x": 0,
"y": 0,
"w": 1169,
"h": 1139
}
]
},
"media_results": {
"result": {
"media_key": "3_1973199284729221120"
}
}
}
]
},
"favorite_count": 42794,
"favorited": false,
"full_text": "Charlie Kirk on government shutdowns https://t.co/3trLacB2dS",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 341,
"reply_count": 784,
"retweet_count": 9028,
"retweeted": false,
"user_id_str": "1552795969959636992",
"id_str": "1973199290182103275"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973289543848829225",
"sortIndex": "1973353912849137647",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973289543848829225",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973289543848829225"
],
"editable_until_msecs": "1759307463000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2744230",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973193252770886032",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozNTg1NDU5MTc=",
"rest_id": "358545917",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Sat Aug 20 03:02:29 +0000 2011",
"default_profile": false,
"default_profile_image": false,
"description": "Family friendly streaming. Cerno30 for your first 30 days free. 👇👇👇",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "hopscotchtv.com",
"expanded_url": "https://hopscotchtv.com",
"url": "https://t.co/0vxtSL178f",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 104368,
"followers_count": 1448047,
"friends_count": 4113,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 8525,
"location": "United States",
"media_count": 15117,
"name": "Cernovich",
"normal_followers_count": 1448047,
"pinned_tweet_ids_str": [
"1973105720716566889"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/358545917/1743467195",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1891619729879801856/QofbmzaO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Cernovich",
"statuses_count": 294838,
"translator_type": "none",
"url": "https://t.co/0vxtSL178f",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1620559908960870400",
"professional_type": "Business",
"category": [
{
"id": 1032,
"name": "Filmmaker",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"cash_app_handle": "$Cernovich"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973193252770886032"
],
"editable_until_msecs": "1759284506000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2861240",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 286,
"bookmarked": false,
"created_at": "Wed Oct 01 01:08:26 +0000 2025",
"conversation_id_str": "1973193252770886032",
"display_text_range": [
0,
233
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/jYJPOmODaS",
"expanded_url": "https://x.com/Cernovich/status/1973193252770886032/photo/1",
"id_str": "1973193197854875648",
"indices": [
234,
257
],
"media_key": "3_1973193197854875648",
"media_url_https": "https://pbs.twimg.com/media/G2Iwwk9bYAAsKov.jpg",
"type": "photo",
"url": "https://t.co/jYJPOmODaS",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 614,
"w": 1384,
"resize": "fit"
},
"medium": {
"h": 532,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 302,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 614,
"width": 1384,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1096,
"h": 614
},
{
"x": 0,
"y": 0,
"w": 614,
"h": 614
},
{
"x": 0,
"y": 0,
"w": 539,
"h": 614
},
{
"x": 19,
"y": 0,
"w": 307,
"h": 614
},
{
"x": 0,
"y": 0,
"w": 1384,
"h": 614
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973193197854875648"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/jYJPOmODaS",
"expanded_url": "https://x.com/Cernovich/status/1973193252770886032/photo/1",
"id_str": "1973193197854875648",
"indices": [
234,
257
],
"media_key": "3_1973193197854875648",
"media_url_https": "https://pbs.twimg.com/media/G2Iwwk9bYAAsKov.jpg",
"type": "photo",
"url": "https://t.co/jYJPOmODaS",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 614,
"w": 1384,
"resize": "fit"
},
"medium": {
"h": 532,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 302,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 614,
"width": 1384,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1096,
"h": 614
},
{
"x": 0,
"y": 0,
"w": 614,
"h": 614
},
{
"x": 0,
"y": 0,
"w": 539,
"h": 614
},
{
"x": 19,
"y": 0,
"w": 307,
"h": 614
},
{
"x": 0,
"y": 0,
"w": 1384,
"h": 614
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973193197854875648"
}
}
}
]
},
"favorite_count": 9114,
"favorited": false,
"full_text": "The larger problem with the ADL designating Turning Point USA as a hate group, is that the FBI allows the ADL to proving this \"training\" to agents. The ADL is deeply embedded within law enforcement.\n\nThey must be removed immediately. https://t.co/jYJPOmODaS",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 92,
"reply_count": 227,
"retweet_count": 1823,
"retweeted": false,
"user_id_str": "358545917",
"id_str": "1973193252770886032"
}
}
},
"legacy": {
"bookmark_count": 1023,
"bookmarked": false,
"created_at": "Wed Oct 01 07:31:03 +0000 2025",
"conversation_id_str": "1973289543848829225",
"display_text_range": [
0,
23
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 37556,
"favorited": false,
"full_text": "The ADL is a hate group",
"is_quote_status": true,
"lang": "en",
"quote_count": 199,
"quoted_status_id_str": "1973193252770886032",
"quoted_status_permalink": {
"url": "https://t.co/E7SXOajgoU",
"expanded": "https://twitter.com/cernovich/status/1973193252770886032",
"display": "x.com/cernovich/stat…"
},
"reply_count": 1606,
"retweet_count": 5761,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973289543848829225"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973288477988143277",
"sortIndex": "1973353912849137646",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973288477988143277",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973288477988143277"
],
"editable_until_msecs": "1759307209000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2687749",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 4356,
"bookmarked": false,
"created_at": "Wed Oct 01 07:26:49 +0000 2025",
"conversation_id_str": "1973288477988143277",
"display_text_range": [
0,
149
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/tywRva8qvI",
"expanded_url": "https://x.com/matt_vanswol/status/1972765434614354288/video/1",
"id_str": "1972763238736556032",
"indices": [
126,
149
],
"media_key": "13_1972763238736556032",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1972763238736556032/img/sS1MiT-mr1oyiCli.jpg",
"source_status_id_str": "1972765434614354288",
"source_user_id_str": "1244068896157708289",
"type": "video",
"url": "https://t.co/tywRva8qvI",
"additional_media_info": {
"monetizable": false,
"source_user": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMjQ0MDY4ODk2MTU3NzA4Mjg5",
"rest_id": "1244068896157708289",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Sun Mar 29 01:08:41 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "Former Nuclear Scientist for US Dept of Energy | Ex-Photographer for @apple, @united, and @hyatt",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "realmattvanswol.com",
"expanded_url": "http://realmattvanswol.com",
"url": "https://t.co/jcCJaxW1QK",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 253306,
"followers_count": 343902,
"friends_count": 7781,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 938,
"location": "Asheville, NC",
"media_count": 1973,
"name": "Matt Van Swol",
"normal_followers_count": 343902,
"pinned_tweet_ids_str": [
"1973036694510432493"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1244068896157708289/1665589063",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1580221131985920001/XNlqL_Yx_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "matt_vanswol",
"statuses_count": 20625,
"translator_type": "none",
"url": "https://t.co/jcCJaxW1QK",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1596515451672186880",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false,
"venmo_handle": "mattvanswol"
},
"super_follow_eligible": true
}
}
}
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 1080,
"w": 1920,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1080,
"width": 1920,
"focus_rects": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 290570,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1972763238736556032/pl/tQZOiBQO6q1AeH7x.m3u8?tag=21&v=9f7"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972763238736556032/vid/avc1/480x270/1n_sHRIfWdW3AXt2.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972763238736556032/vid/avc1/640x360/p6PJ1JTxihueLBHT.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972763238736556032/vid/avc1/1280x720/yabZhFKqZdhwsGBA.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972763238736556032/vid/avc1/1920x1080/TbRic7kxdoFuLbuZ.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1972763238736556032"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/tywRva8qvI",
"expanded_url": "https://x.com/matt_vanswol/status/1972765434614354288/video/1",
"id_str": "1972763238736556032",
"indices": [
126,
149
],
"media_key": "13_1972763238736556032",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1972763238736556032/img/sS1MiT-mr1oyiCli.jpg",
"source_status_id_str": "1972765434614354288",
"source_user_id_str": "1244068896157708289",
"type": "video",
"url": "https://t.co/tywRva8qvI",
"additional_media_info": {
"monetizable": false,
"source_user": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMjQ0MDY4ODk2MTU3NzA4Mjg5",
"rest_id": "1244068896157708289",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Sun Mar 29 01:08:41 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "Former Nuclear Scientist for US Dept of Energy | Ex-Photographer for @apple, @united, and @hyatt",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "realmattvanswol.com",
"expanded_url": "http://realmattvanswol.com",
"url": "https://t.co/jcCJaxW1QK",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 253306,
"followers_count": 343902,
"friends_count": 7781,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 938,
"location": "Asheville, NC",
"media_count": 1973,
"name": "Matt Van Swol",
"normal_followers_count": 343902,
"pinned_tweet_ids_str": [
"1973036694510432493"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1244068896157708289/1665589063",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1580221131985920001/XNlqL_Yx_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "matt_vanswol",
"statuses_count": 20625,
"translator_type": "none",
"url": "https://t.co/jcCJaxW1QK",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1596515451672186880",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false,
"venmo_handle": "mattvanswol"
},
"super_follow_eligible": true
}
}
}
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 1080,
"w": 1920,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1080,
"width": 1920,
"focus_rects": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 290570,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1972763238736556032/pl/tQZOiBQO6q1AeH7x.m3u8?tag=21&v=9f7"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972763238736556032/vid/avc1/480x270/1n_sHRIfWdW3AXt2.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972763238736556032/vid/avc1/640x360/p6PJ1JTxihueLBHT.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972763238736556032/vid/avc1/1280x720/yabZhFKqZdhwsGBA.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972763238736556032/vid/avc1/1920x1080/TbRic7kxdoFuLbuZ.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1972763238736556032"
}
}
}
]
},
"favorite_count": 109095,
"favorited": false,
"full_text": "Listen to this father. \n\nWe need to hold judges & DAs responsible for releasing vicious murderers on innocent victims. \n\n https://t.co/tywRva8qvI",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 917,
"reply_count": 3787,
"retweet_count": 20133,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973288477988143277"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973272887466533197",
"sortIndex": "1973353912849137645",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973272887466533197",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973272887466533197"
],
"editable_until_msecs": "1759303492000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "5926313",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973116884968235110",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMTIxMzc1NDI5ODg0MDM5MTc1",
"rest_id": "1121375429884039175",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Thu Apr 25 11:28:31 +0000 2019",
"default_profile": true,
"default_profile_image": false,
"description": "Great Yarmouth MP. Ex-Southampton FC Chairman. Businessman. Farmer. Former MEP. Leader, @restorebritain_.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "restorebritain.org.uk/join_us",
"expanded_url": "https://www.restorebritain.org.uk/join_us",
"url": "https://t.co/myNR12oSV0",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 17180,
"followers_count": 458578,
"friends_count": 767,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 995,
"location": "",
"media_count": 2306,
"name": "Rupert Lowe MP",
"normal_followers_count": 458578,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1121375429884039175/1751281630",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1939641852077948928/TmTJBr6r_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "RupertLowe10",
"statuses_count": 18263,
"translator_type": "none",
"url": "https://t.co/myNR12oSV0",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973116884968235110"
],
"editable_until_msecs": "1759266298000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "6152217",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 440,
"bookmarked": false,
"created_at": "Tue Sep 30 20:04:58 +0000 2025",
"conversation_id_str": "1973116884968235110",
"display_text_range": [
0,
277
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 24853,
"favorited": false,
"full_text": "Get called a racist? Xenophobe? Islamophobe? Far-right? Who cares. Honestly, it doesn’t matter. Trust me. They are now just meaningless words.\n\nDon’t moan. Don’t bite. Don’t care.\n\nDon’t give those words, and those who use them so flippantly, power over you.\n\nThis is the way.",
"is_quote_status": false,
"lang": "en",
"quote_count": 170,
"reply_count": 1006,
"retweet_count": 3182,
"retweeted": false,
"user_id_str": "1121375429884039175",
"id_str": "1973116884968235110"
}
}
},
"legacy": {
"bookmark_count": 648,
"bookmarked": false,
"created_at": "Wed Oct 01 06:24:52 +0000 2025",
"conversation_id_str": "1973272887466533197",
"display_text_range": [
0,
67
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 47164,
"favorited": false,
"full_text": "Exactly. Those attacks are so overused as to make them meaningless.",
"is_quote_status": true,
"lang": "en",
"quote_count": 188,
"quoted_status_id_str": "1973116884968235110",
"quoted_status_permalink": {
"url": "https://t.co/PQASvWrs89",
"expanded": "https://twitter.com/rupertlowe10/status/1973116884968235110",
"display": "x.com/rupertlowe10/s…"
},
"reply_count": 2518,
"retweet_count": 5512,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973272887466533197"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973272264029380799",
"sortIndex": "1973353912849137644",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973272264029380799",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973272264029380799"
],
"editable_until_msecs": "1759303344000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2486163",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973171100587794690",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODE4MzExMDA1Njk4Njc4Nzg0",
"rest_id": "1818311005698678784",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Jul 30 15:42:27 +0000 2024",
"default_profile": true,
"default_profile_image": false,
"description": "Tech updates, strategy, and bold takes. I am the coolest villain, don't forget",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "buymeacoffee.com/xfreeze",
"expanded_url": "http://buymeacoffee.com/xfreeze",
"url": "https://t.co/benQfvMS86",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 28424,
"followers_count": 36708,
"friends_count": 1187,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 196,
"location": "Antarctica ",
"media_count": 2808,
"name": "X Freeze",
"normal_followers_count": 36708,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1818311005698678784/1757091277",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1876785200010539008/2_HFJjq9_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "amXFreeze",
"statuses_count": 20941,
"translator_type": "none",
"url": "https://t.co/benQfvMS86",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1835442711370871202",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "bc1qcgtw9up78rjqp62z47mwdtd5pgqupaz6cmnsnf",
"ethereum_handle": "0x7147139e6943aED136fcAf28Cee4f3AB4eaDCb37"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973171100587794690"
],
"editable_until_msecs": "1759279224000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2564548",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"note_tweet": {
"is_expandable": true,
"note_tweet_results": {
"result": {
"id": "Tm90ZVR3ZWV0OjE5NzMxNzExMDA1MDgxNjQwOTY=",
"text": "xAI is building Grokipedia, an open source knowledge repository where truth is the mission\n\nThis will be available to the public with no limits on use\n\nIts knowledge base is purely built on truth and facts\n\nSoon, Grokipedia will be the most trusted source for everything, by every AI and every human for facts and truthful information\n\nGrokipedia is a crucial step for xAI’s mission - understanding the universe\n\nThe mission is, and always will be: the truth, in its purest form\n\nGrokipedia is coming......",
"entity_set": {
"hashtags": [],
"symbols": [],
"urls": [],
"user_mentions": []
},
"richtext": {
"richtext_tags": []
},
"media": {
"inline_media": []
}
}
}
},
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 275,
"bookmarked": false,
"created_at": "Tue Sep 30 23:40:24 +0000 2025",
"conversation_id_str": "1973171100587794690",
"display_text_range": [
0,
280
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/qiaMaEt2CW",
"expanded_url": "https://x.com/amXFreeze/status/1973171100587794690/photo/1",
"id_str": "1973155565275918336",
"indices": [
281,
304
],
"media_key": "3_1973155565275918336",
"media_url_https": "https://pbs.twimg.com/media/G2IOiErbMAAhcbu.jpg",
"type": "photo",
"url": "https://t.co/qiaMaEt2CW",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1024,
"w": 1024,
"resize": "fit"
},
"medium": {
"h": 1024,
"w": 1024,
"resize": "fit"
},
"small": {
"h": 680,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1024,
"width": 1024,
"focus_rects": [
{
"x": 0,
"y": 451,
"w": 1024,
"h": 573
},
{
"x": 0,
"y": 0,
"w": 1024,
"h": 1024
},
{
"x": 88,
"y": 0,
"w": 898,
"h": 1024
},
{
"x": 281,
"y": 0,
"w": 512,
"h": 1024
},
{
"x": 0,
"y": 0,
"w": 1024,
"h": 1024
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973155565275918336"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/qiaMaEt2CW",
"expanded_url": "https://x.com/amXFreeze/status/1973171100587794690/photo/1",
"id_str": "1973155565275918336",
"indices": [
281,
304
],
"media_key": "3_1973155565275918336",
"media_url_https": "https://pbs.twimg.com/media/G2IOiErbMAAhcbu.jpg",
"type": "photo",
"url": "https://t.co/qiaMaEt2CW",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1024,
"w": 1024,
"resize": "fit"
},
"medium": {
"h": 1024,
"w": 1024,
"resize": "fit"
},
"small": {
"h": 680,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1024,
"width": 1024,
"focus_rects": [
{
"x": 0,
"y": 451,
"w": 1024,
"h": 573
},
{
"x": 0,
"y": 0,
"w": 1024,
"h": 1024
},
{
"x": 88,
"y": 0,
"w": 898,
"h": 1024
},
{
"x": 281,
"y": 0,
"w": 512,
"h": 1024
},
{
"x": 0,
"y": 0,
"w": 1024,
"h": 1024
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973155565275918336"
}
}
}
]
},
"favorite_count": 3758,
"favorited": false,
"full_text": "xAI is building Grokipedia, an open source knowledge repository where truth is the mission\n\nThis will be available to the public with no limits on use\n\nIts knowledge base is purely built on truth and facts\n\nSoon, Grokipedia will be the most trusted source for everything, by every https://t.co/qiaMaEt2CW",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 123,
"reply_count": 538,
"retweet_count": 602,
"retweeted": false,
"user_id_str": "1818311005698678784",
"id_str": "1973171100587794690"
}
}
},
"legacy": {
"bookmark_count": 662,
"bookmarked": false,
"created_at": "Wed Oct 01 06:22:24 +0000 2025",
"conversation_id_str": "1973272264029380799",
"display_text_range": [
0,
20
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 26072,
"favorited": false,
"full_text": "This is sorely neede",
"is_quote_status": true,
"lang": "en",
"quote_count": 242,
"quoted_status_id_str": "1973171100587794690",
"quoted_status_permalink": {
"url": "https://t.co/ihpewdF6tw",
"expanded": "https://twitter.com/amxfreeze/status/1973171100587794690",
"display": "x.com/amxfreeze/stat…"
},
"reply_count": 2807,
"retweet_count": 3128,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973272264029380799"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973153674873676046",
"sortIndex": "1973353912849137643",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973153674873676046",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949673,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949673,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973153674873676046"
],
"editable_until_msecs": "1759275070169",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "353",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Tue Sep 30 22:31:10 +0000 2025",
"conversation_id_str": "1973153674873676046",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1394680198705123329",
"name": "MAZE",
"screen_name": "mazemoore",
"indices": [
3,
13
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @mazemoore: Remember when Nancy Pelosi was the one demanding that illegal immigrants not be allowed to get government healthcare benefit…",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 6045,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973153674873676046",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973111738225795229",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzk0NjgwMTk4NzA1MTIzMzI5",
"rest_id": "1394680198705123329",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue May 18 15:44:18 +0000 2021",
"default_profile": true,
"default_profile_image": false,
"description": "Video editor. Content creator.",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 159154,
"followers_count": 536204,
"friends_count": 15781,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 1570,
"location": "",
"media_count": 6935,
"name": "MAZE",
"normal_followers_count": 536204,
"pinned_tweet_ids_str": [
"1971746235716698389"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1394680198705123329/1674071752",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1615800151750152208/qeY0l05r_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "mazemoore",
"statuses_count": 38951,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973111738225795229"
],
"editable_until_msecs": "1759265071000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1157168",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 2005,
"bookmarked": false,
"created_at": "Tue Sep 30 19:44:31 +0000 2025",
"conversation_id_str": "1973111738225795229",
"display_text_range": [
0,
144
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/zf76dQJiBS",
"expanded_url": "https://x.com/mazemoore/status/1973111738225795229/video/1",
"id_str": "1973111501272612864",
"indices": [
145,
168
],
"media_key": "13_1973111501272612864",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973111501272612864/img/0jjZA9lwou1_-YOc.jpg",
"type": "video",
"url": "https://t.co/zf76dQJiBS",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 1080,
"w": 1920,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1080,
"width": 1920,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 22989,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973111501272612864/pl/XPwvuY-zhmizD9Wh.m3u8?tag=21&v=052"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973111501272612864/vid/avc1/480x270/trvnRsMCjIiGJTXM.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973111501272612864/vid/avc1/640x360/RTr-EVnJufkLMPaQ.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973111501272612864/vid/avc1/1280x720/nizdQTQeiA8OdRDJ.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973111501272612864/vid/avc1/1920x1080/-RyhBjJlzpDss_aY.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973111501272612864"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/zf76dQJiBS",
"expanded_url": "https://x.com/mazemoore/status/1973111738225795229/video/1",
"id_str": "1973111501272612864",
"indices": [
145,
168
],
"media_key": "13_1973111501272612864",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973111501272612864/img/0jjZA9lwou1_-YOc.jpg",
"type": "video",
"url": "https://t.co/zf76dQJiBS",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 1080,
"w": 1920,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1080,
"width": 1920,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 22989,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973111501272612864/pl/XPwvuY-zhmizD9Wh.m3u8?tag=21&v=052"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973111501272612864/vid/avc1/480x270/trvnRsMCjIiGJTXM.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973111501272612864/vid/avc1/640x360/RTr-EVnJufkLMPaQ.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973111501272612864/vid/avc1/1280x720/nizdQTQeiA8OdRDJ.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973111501272612864/vid/avc1/1920x1080/-RyhBjJlzpDss_aY.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973111501272612864"
}
}
}
]
},
"favorite_count": 21233,
"favorited": false,
"full_text": "Remember when Nancy Pelosi was the one demanding that illegal immigrants not be allowed to get government healthcare benefits? That was awesome. https://t.co/zf76dQJiBS",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 317,
"reply_count": 1065,
"retweet_count": 6045,
"retweeted": false,
"user_id_str": "1394680198705123329",
"id_str": "1973111738225795229"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbYHrShFoAAAoACgAAAZmfmLnpAAAAAA=="
}
}
}
}
},
{
"entryId": "cursor-top-1973353912849137665",
"sortIndex": "1973353912849137665",
"content": {
"entryType": "TimelineTimelineCursor",
"__typename": "TimelineTimelineCursor",
"value": "DAAHCgABG2LC7a-AJxELAAIAAAATMTk3MzMxODU3MjY2ODgxMzQ4OQgAAwAAAAEAAA",
"cursorType": "Top"
}
},
{
"entryId": "cursor-bottom-1973353912849137642",
"sortIndex": "1973353912849137642",
"content": {
"entryType": "TimelineTimelineCursor",
"__typename": "TimelineTimelineCursor",
"value": "DAAHCgABG2LC7a9__-oLAAIAAAATMTk3MzE1MzY3NDg3MzY3NjA0NggAAwAAAAIAAA",
"cursorType": "Bottom"
}
}
]
}
],
"metadata": {
"scribeConfig": {
"page": "profileBest"
}
}
}
}
}
}
}
Convert Username to UserId
Converts a username to its corresponding user ID.
curl --request GET \
--url 'https://<direct.gateway>/username/to/id/<username>' \
--header 'X-API-KEY: YOUR_API_KEY'
Parameters
Name | Type | Required | Description |
---|---|---|---|
username | string | Yes | The username (without @) |
Request Example
GET /username/to/id/elonmusk
Response Example
{
"userId": "44196397"
}
Tweets and Replies by UserId
Retrieves all tweets and replies from a specific user.
curl --request GET \
--url 'https://<direct.gateway>/user/<userId>/tweetsAndReplies' \
--header 'X-API-KEY: YOUR_API_KEY'
Parameters
Name | Type | Required | Description |
---|---|---|---|
userId | string | Yes (but you can use username instead in the query) | The unique user ID |
Query Parameters
Name | Type | Required | Description |
---|---|---|---|
count | string | No | Number of tweets to return (Default: 20, Max: 100) |
cursor | string | No | Pagination cursor. Read More |
username | string | No | The username (without @). If this is set, the userId parameter is ignored. You can provide "-1" as the userId then. |
Request Example
GET /user/44196397/tweetsAndReplies?count=20
Response Example
{
"user": {
"result": {
"__typename": "User",
"timeline": {
"timeline": {
"instructions": [
{
"type": "TimelineClearCache"
},
{
"type": "TimelinePinEntry",
"entry": {
"entryId": "tweet-1972376013297586551",
"sortIndex": "1973354675688177664",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1972376013297586551",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1972376013297586551"
],
"editable_until_msecs": "1759089661000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "29588390",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1972284213232861204",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODE4MzExMDA1Njk4Njc4Nzg0",
"rest_id": "1818311005698678784",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Jul 30 15:42:27 +0000 2024",
"default_profile": true,
"default_profile_image": false,
"description": "Tech updates, strategy, and bold takes. I am the coolest villain, don't forget",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "buymeacoffee.com/xfreeze",
"expanded_url": "http://buymeacoffee.com/xfreeze",
"url": "https://t.co/benQfvMS86",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 28424,
"followers_count": 36712,
"friends_count": 1187,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 196,
"location": "Antarctica ",
"media_count": 2808,
"name": "X Freeze",
"normal_followers_count": 36712,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1818311005698678784/1757091277",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1876785200010539008/2_HFJjq9_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "amXFreeze",
"statuses_count": 20941,
"translator_type": "none",
"url": "https://t.co/benQfvMS86",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1835442711370871202",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "bc1qcgtw9up78rjqp62z47mwdtd5pgqupaz6cmnsnf",
"ethereum_handle": "0x7147139e6943aED136fcAf28Cee4f3AB4eaDCb37"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"initial_tweet_id": "1972282999678067062",
"edit_control_initial": {
"edit_tweet_ids": [
"1972282999678067062",
"1972284213232861204"
],
"editable_until_msecs": "1759067485000",
"is_edit_eligible": true,
"edits_remaining": "4"
}
},
"previous_counts": {
"bookmark_count": 1,
"favorite_count": 10,
"quote_count": 0,
"reply_count": 6,
"retweet_count": 0
},
"is_translatable": false,
"views": {
"count": "26970903",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 299,
"bookmarked": false,
"created_at": "Sun Sep 28 12:56:14 +0000 2025",
"conversation_id_str": "1972284213232861204",
"display_text_range": [
0,
156
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/GffMzz1jD2",
"expanded_url": "https://x.com/amXFreeze/status/1972284213232861204/photo/1",
"id_str": "1972282313170886656",
"indices": [
157,
180
],
"media_key": "3_1972282313170886656",
"media_url_https": "https://pbs.twimg.com/media/G170UHFWIAAVoHO.jpg",
"type": "photo",
"url": "https://t.co/GffMzz1jD2",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 834,
"w": 1285,
"resize": "fit"
},
"medium": {
"h": 779,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 441,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 834,
"width": 1285,
"focus_rects": [
{
"x": 0,
"y": 114,
"w": 1285,
"h": 720
},
{
"x": 320,
"y": 0,
"w": 834,
"h": 834
},
{
"x": 371,
"y": 0,
"w": 732,
"h": 834
},
{
"x": 529,
"y": 0,
"w": 417,
"h": 834
},
{
"x": 0,
"y": 0,
"w": 1285,
"h": 834
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1972282313170886656"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/GffMzz1jD2",
"expanded_url": "https://x.com/amXFreeze/status/1972284213232861204/photo/1",
"id_str": "1972282313170886656",
"indices": [
157,
180
],
"media_key": "3_1972282313170886656",
"media_url_https": "https://pbs.twimg.com/media/G170UHFWIAAVoHO.jpg",
"type": "photo",
"url": "https://t.co/GffMzz1jD2",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 834,
"w": 1285,
"resize": "fit"
},
"medium": {
"h": 779,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 441,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 834,
"width": 1285,
"focus_rects": [
{
"x": 0,
"y": 114,
"w": 1285,
"h": 720
},
{
"x": 320,
"y": 0,
"w": 834,
"h": 834
},
{
"x": 371,
"y": 0,
"w": 732,
"h": 834
},
{
"x": 529,
"y": 0,
"w": 417,
"h": 834
},
{
"x": 0,
"y": 0,
"w": 1285,
"h": 834
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1972282313170886656"
}
}
}
]
},
"favorite_count": 1442,
"favorited": false,
"full_text": "Grok Code leads with 57.6% of coding traffic on OpenRouter, more than every other AI code generator combined\n\nGrok Code Fast 1 ranks #1\nGrok 4 Fast is at #4 https://t.co/GffMzz1jD2",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 80,
"reply_count": 386,
"retweet_count": 290,
"retweeted": false,
"user_id_str": "1818311005698678784",
"id_str": "1972284213232861204"
}
}
},
"legacy": {
"bookmark_count": 3991,
"bookmarked": false,
"created_at": "Sun Sep 28 19:01:01 +0000 2025",
"conversation_id_str": "1972376013297586551",
"display_text_range": [
0,
71
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 53461,
"favorited": false,
"full_text": "Grok Code now being used more than all other AIs combined on OpenRouter",
"is_quote_status": true,
"lang": "en",
"quote_count": 715,
"quoted_status_id_str": "1972284213232861204",
"quoted_status_permalink": {
"url": "https://t.co/oUd8BSDZJw",
"expanded": "https://twitter.com/amxfreeze/status/1972284213232861204",
"display": "x.com/amxfreeze/stat…"
},
"reply_count": 7627,
"retweet_count": 9958,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1972376013297586551"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet",
"socialContext": {
"type": "TimelineGeneralContext",
"contextType": "Pin",
"text": "Pinned"
}
},
"clientEventInfo": {
"component": "pinned_tweets",
"element": "tweet"
}
}
}
},
{
"type": "TimelineAddEntries",
"entries": [
{
"entryId": "profile-conversation-1973354675688177665",
"sortIndex": "1973354675688177663",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "profile-conversation-1973354675688177665-tweet-1973097698078105910",
"dispensable": true,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973097698078105910",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo3NjMwOTQ1Nzk0OTEwMDg1MTI=",
"rest_id": "763094579491008512",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Aug 09 19:28:20 +0000 2016",
"default_profile": true,
"default_profile_image": false,
"description": "Assistant News Director @FLVoiceNews | Marylander-turned-Floridian | Politics & breaking news alerts | https://t.co/55cqQGUClp | “Men must vote” - Charlie Kirk",
"entities": {
"description": {
"urls": [
{
"display_url": "flvoicenews.com",
"expanded_url": "http://flvoicenews.com",
"url": "https://t.co/55cqQGUClp",
"indices": [
103,
126
]
}
]
},
"url": {
"urls": [
{
"display_url": "ericdaugherty.net",
"expanded_url": "http://ericdaugherty.net",
"url": "https://t.co/9JrzFB6FPm",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 114784,
"followers_count": 635336,
"friends_count": 2248,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 2571,
"location": "",
"media_count": 22447,
"name": "Eric Daugherty",
"normal_followers_count": 635336,
"pinned_tweet_ids_str": [
"1973003991035367757"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/763094579491008512/1651332472",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1946702115037908992/NU6Ro1bl_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "EricLDaugh",
"statuses_count": 52661,
"translator_type": "none",
"url": "https://t.co/9JrzFB6FPm",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1480980230751854594",
"professional_type": "Creator",
"category": [
{
"id": 933,
"name": "Media Personality",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "39v2q5qoa7MQ4UPtAf7TzgYggtLF3v3nLD",
"cash_app_handle": "ELDaugh",
"venmo_handle": "ericldaugh"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973097698078105910"
],
"editable_until_msecs": "1759261724000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1045698",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 1936,
"bookmarked": false,
"created_at": "Tue Sep 30 18:48:44 +0000 2025",
"conversation_id_str": "1973097698078105910",
"display_text_range": [
0,
275
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/zeUqAsh3oX",
"expanded_url": "https://x.com/i/status/1973096129668813209/video/1",
"id_str": "1973095882313641985",
"indices": [
252,
275
],
"media_key": "13_1973095882313641985",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973095882313641985/img/iYpyxEnEbrQvCdMl.jpg",
"source_status_id_str": "1973096129668813209",
"source_user_id_str": "1355721251180961792",
"type": "video",
"url": "https://t.co/zeUqAsh3oX",
"additional_media_info": {
"monetizable": false,
"source_user": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzU1NzIxMjUxMTgwOTYxNzky",
"rest_id": "1355721251180961792",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sun Jan 31 03:35:19 +0000 2021",
"default_profile": true,
"default_profile_image": false,
"description": "David J. Freeman - Political Commentator - America First - MAGA - Christian",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 1115834,
"followers_count": 1583156,
"friends_count": 102061,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 4158,
"location": "CA to Texas in 2007",
"media_count": 34526,
"name": "Gunther Eagleman™",
"normal_followers_count": 1583156,
"pinned_tweet_ids_str": [
"1973083270897086540"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1355721251180961792/1740358024",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1606836521784512512/Xb-_cXXi_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "GuntherEagleman",
"statuses_count": 361865,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "3BtB9rMnpnoscZZU9MyVe8sycchW8R3ZXt",
"cash_app_handle": "$Gunthereagleman"
},
"super_follow_eligible": true
}
}
}
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 49063,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/pl/S8kf1fqllCWya7Cc.m3u8?tag=21&v=909"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/480x270/jdV-lmmmqKWup0y2.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/640x360/FSd8q9lG_T3TaTV7.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/1280x720/OlkDLXIA0l6CQqnr.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973095882313641985"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/zeUqAsh3oX",
"expanded_url": "https://x.com/i/status/1973096129668813209/video/1",
"id_str": "1973095882313641985",
"indices": [
252,
275
],
"media_key": "13_1973095882313641985",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973095882313641985/img/iYpyxEnEbrQvCdMl.jpg",
"source_status_id_str": "1973096129668813209",
"source_user_id_str": "1355721251180961792",
"type": "video",
"url": "https://t.co/zeUqAsh3oX",
"additional_media_info": {
"monetizable": false,
"source_user": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzU1NzIxMjUxMTgwOTYxNzky",
"rest_id": "1355721251180961792",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sun Jan 31 03:35:19 +0000 2021",
"default_profile": true,
"default_profile_image": false,
"description": "David J. Freeman - Political Commentator - America First - MAGA - Christian",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 1115834,
"followers_count": 1583156,
"friends_count": 102061,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 4158,
"location": "CA to Texas in 2007",
"media_count": 34526,
"name": "Gunther Eagleman™",
"normal_followers_count": 1583156,
"pinned_tweet_ids_str": [
"1973083270897086540"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1355721251180961792/1740358024",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1606836521784512512/Xb-_cXXi_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "GuntherEagleman",
"statuses_count": 361865,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "3BtB9rMnpnoscZZU9MyVe8sycchW8R3ZXt",
"cash_app_handle": "$Gunthereagleman"
},
"super_follow_eligible": true
}
}
}
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 49063,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/pl/S8kf1fqllCWya7Cc.m3u8?tag=21&v=909"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/480x270/jdV-lmmmqKWup0y2.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/640x360/FSd8q9lG_T3TaTV7.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/1280x720/OlkDLXIA0l6CQqnr.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973095882313641985"
}
}
}
]
},
"favorite_count": 42390,
"favorited": false,
"full_text": "🚨 BREAKING: In an outrageous development, US Citizenship and Immigration Director exposes that the migrant parole program was LITTERED with fraud, with rich NGOs \"sponsoring\" thousands of illegals without even knowing who they were. This is betrayal.\n\nhttps://t.co/zeUqAsh3oX",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 373,
"reply_count": 865,
"retweet_count": 13086,
"retweeted": false,
"user_id_str": "763094579491008512",
"id_str": "1973097698078105910"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177665-tweet-1973318586648371572",
"dispensable": false,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973318586648371572",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973318586648371572"
],
"editable_until_msecs": "1759314388000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "27780",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 15,
"bookmarked": false,
"created_at": "Wed Oct 01 09:26:28 +0000 2025",
"conversation_id_str": "1973097698078105910",
"display_text_range": [
12,
13
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "763094579491008512",
"name": "Eric Daugherty",
"screen_name": "EricLDaugh",
"indices": [
0,
11
]
}
]
},
"favorite_count": 862,
"favorited": false,
"full_text": "@EricLDaugh 💯",
"in_reply_to_screen_name": "EricLDaugh",
"in_reply_to_status_id_str": "1973097698078105910",
"in_reply_to_user_id_str": "763094579491008512",
"is_quote_status": false,
"lang": "qme",
"quote_count": 5,
"reply_count": 106,
"retweet_count": 79,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973318586648371572"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
}
],
"metadata": {
"conversationMetadata": {
"allTweetIds": [
"1973097698078105910",
"1973318586648371572"
],
"enableDeduplication": true
}
},
"displayType": "VerticalConversation",
"clientEventInfo": {
"component": "suggest_ranked_organic_tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973318572668813489",
"sortIndex": "1973354675688177662",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973318572668813489",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973318572668813489"
],
"editable_until_msecs": "1759314384867",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"state": "Enabled"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 09:26:24 +0000 2025",
"conversation_id_str": "1973318572668813489",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "763094579491008512",
"name": "Eric Daugherty",
"screen_name": "EricLDaugh",
"indices": [
3,
14
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @EricLDaugh: 🚨 BREAKING: In an outrageous development, US Citizenship and Immigration Director exposes that the migrant parole program w…",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 13086,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973318572668813489",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973097698078105910",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo3NjMwOTQ1Nzk0OTEwMDg1MTI=",
"rest_id": "763094579491008512",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Aug 09 19:28:20 +0000 2016",
"default_profile": true,
"default_profile_image": false,
"description": "Assistant News Director @FLVoiceNews | Marylander-turned-Floridian | Politics & breaking news alerts | https://t.co/55cqQGUClp | “Men must vote” - Charlie Kirk",
"entities": {
"description": {
"urls": [
{
"display_url": "flvoicenews.com",
"expanded_url": "http://flvoicenews.com",
"url": "https://t.co/55cqQGUClp",
"indices": [
103,
126
]
}
]
},
"url": {
"urls": [
{
"display_url": "ericdaugherty.net",
"expanded_url": "http://ericdaugherty.net",
"url": "https://t.co/9JrzFB6FPm",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 114784,
"followers_count": 635336,
"friends_count": 2248,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 2571,
"location": "",
"media_count": 22447,
"name": "Eric Daugherty",
"normal_followers_count": 635336,
"pinned_tweet_ids_str": [
"1973003991035367757"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/763094579491008512/1651332472",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1946702115037908992/NU6Ro1bl_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "EricLDaugh",
"statuses_count": 52661,
"translator_type": "none",
"url": "https://t.co/9JrzFB6FPm",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1480980230751854594",
"professional_type": "Creator",
"category": [
{
"id": 933,
"name": "Media Personality",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "39v2q5qoa7MQ4UPtAf7TzgYggtLF3v3nLD",
"cash_app_handle": "ELDaugh",
"venmo_handle": "ericldaugh"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973097698078105910"
],
"editable_until_msecs": "1759261724000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1045698",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 1936,
"bookmarked": false,
"created_at": "Tue Sep 30 18:48:44 +0000 2025",
"conversation_id_str": "1973097698078105910",
"display_text_range": [
0,
275
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/zeUqAsh3oX",
"expanded_url": "https://x.com/i/status/1973096129668813209/video/1",
"id_str": "1973095882313641985",
"indices": [
252,
275
],
"media_key": "13_1973095882313641985",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973095882313641985/img/iYpyxEnEbrQvCdMl.jpg",
"source_status_id_str": "1973096129668813209",
"source_user_id_str": "1355721251180961792",
"type": "video",
"url": "https://t.co/zeUqAsh3oX",
"additional_media_info": {
"monetizable": false,
"source_user": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzU1NzIxMjUxMTgwOTYxNzky",
"rest_id": "1355721251180961792",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sun Jan 31 03:35:19 +0000 2021",
"default_profile": true,
"default_profile_image": false,
"description": "David J. Freeman - Political Commentator - America First - MAGA - Christian",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 1115834,
"followers_count": 1583156,
"friends_count": 102061,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 4158,
"location": "CA to Texas in 2007",
"media_count": 34526,
"name": "Gunther Eagleman™",
"normal_followers_count": 1583156,
"pinned_tweet_ids_str": [
"1973083270897086540"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1355721251180961792/1740358024",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1606836521784512512/Xb-_cXXi_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "GuntherEagleman",
"statuses_count": 361865,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "3BtB9rMnpnoscZZU9MyVe8sycchW8R3ZXt",
"cash_app_handle": "$Gunthereagleman"
},
"super_follow_eligible": true
}
}
}
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 49063,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/pl/S8kf1fqllCWya7Cc.m3u8?tag=21&v=909"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/480x270/jdV-lmmmqKWup0y2.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/640x360/FSd8q9lG_T3TaTV7.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/1280x720/OlkDLXIA0l6CQqnr.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973095882313641985"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/zeUqAsh3oX",
"expanded_url": "https://x.com/i/status/1973096129668813209/video/1",
"id_str": "1973095882313641985",
"indices": [
252,
275
],
"media_key": "13_1973095882313641985",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973095882313641985/img/iYpyxEnEbrQvCdMl.jpg",
"source_status_id_str": "1973096129668813209",
"source_user_id_str": "1355721251180961792",
"type": "video",
"url": "https://t.co/zeUqAsh3oX",
"additional_media_info": {
"monetizable": false,
"source_user": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzU1NzIxMjUxMTgwOTYxNzky",
"rest_id": "1355721251180961792",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sun Jan 31 03:35:19 +0000 2021",
"default_profile": true,
"default_profile_image": false,
"description": "David J. Freeman - Political Commentator - America First - MAGA - Christian",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 1115834,
"followers_count": 1583156,
"friends_count": 102061,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 4158,
"location": "CA to Texas in 2007",
"media_count": 34526,
"name": "Gunther Eagleman™",
"normal_followers_count": 1583156,
"pinned_tweet_ids_str": [
"1973083270897086540"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1355721251180961792/1740358024",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1606836521784512512/Xb-_cXXi_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "GuntherEagleman",
"statuses_count": 361865,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "3BtB9rMnpnoscZZU9MyVe8sycchW8R3ZXt",
"cash_app_handle": "$Gunthereagleman"
},
"super_follow_eligible": true
}
}
}
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 49063,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/pl/S8kf1fqllCWya7Cc.m3u8?tag=21&v=909"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/480x270/jdV-lmmmqKWup0y2.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/640x360/FSd8q9lG_T3TaTV7.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973095882313641985/vid/avc1/1280x720/OlkDLXIA0l6CQqnr.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973095882313641985"
}
}
}
]
},
"favorite_count": 42390,
"favorited": false,
"full_text": "🚨 BREAKING: In an outrageous development, US Citizenship and Immigration Director exposes that the migrant parole program was LITTERED with fraud, with rich NGOs \"sponsoring\" thousands of illegals without even knowing who they were. This is betrayal.\n\nhttps://t.co/zeUqAsh3oX",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 373,
"reply_count": 865,
"retweet_count": 13086,
"retweeted": false,
"user_id_str": "763094579491008512",
"id_str": "1973097698078105910"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973318445853975027",
"sortIndex": "1973354675688177661",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973318445853975027",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973318445853975027"
],
"editable_until_msecs": "1759314354632",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 09:25:54 +0000 2025",
"conversation_id_str": "1973318445853975027",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1498032293671325699",
"name": "Aesthetica",
"screen_name": "Anc_Aesthetics",
"indices": [
3,
18
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @Anc_Aesthetics: One of the biggest lies ever told is that leftists (communists) are \"the compassionate ones.\" These are the most evil p…",
"is_quote_status": true,
"lang": "en",
"quote_count": 0,
"quoted_status_id_str": "1973219233124458944",
"quoted_status_permalink": {
"url": "https://t.co/9y7LPT2sZK",
"expanded": "https://twitter.com/TheChiefNerd/status/1973219233124458944",
"display": "x.com/TheChiefNerd/s…"
},
"reply_count": 0,
"retweet_count": 1805,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973318445853975027",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973229132625711281",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNDk4MDMyMjkzNjcxMzI1Njk5",
"rest_id": "1498032293671325699",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Sun Feb 27 20:28:33 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "Artist | Aesthetics | History - In the Arena",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "buymeacoffee.com/aesthetica1",
"expanded_url": "https://buymeacoffee.com/aesthetica1",
"url": "https://t.co/BDYI464G9q",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 68791,
"followers_count": 521781,
"friends_count": 777,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 1984,
"location": "",
"media_count": 6509,
"name": "Aesthetica",
"normal_followers_count": 521781,
"pinned_tweet_ids_str": [
"1966952427049152973"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1498032293671325699/1721664062",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1854663809077510147/Q_4h4AQ0_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Anc_Aesthetics",
"statuses_count": 23146,
"translator_type": "none",
"url": "https://t.co/BDYI464G9q",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1618082388008902658",
"professional_type": "Creator",
"category": [
{
"id": 1017,
"name": "Artist",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973229132625711281"
],
"editable_until_msecs": "1759293060000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "916413",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973219233124458944",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo2OTE1Njg2MQ==",
"rest_id": "69156861",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Thu Aug 27 01:10:41 +0000 2009",
"default_profile": true,
"default_profile_image": false,
"description": "Software Engineer | Podcast Clipper | DM for Removal | Merch 👉https://t.co/LEGwYHQAst | Tips 👉https://t.co/h9xVqydk1b",
"entities": {
"description": {
"urls": [
{
"display_url": "trustthescilenced.com",
"expanded_url": "http://trustthescilenced.com",
"url": "https://t.co/LEGwYHQAst",
"indices": [
63,
86
]
},
{
"display_url": "buymeacoffee.com/chiefnerd",
"expanded_url": "http://buymeacoffee.com/chiefnerd",
"url": "https://t.co/h9xVqydk1b",
"indices": [
95,
118
]
}
]
},
"url": {
"urls": [
{
"display_url": "ChiefNerd.id",
"expanded_url": "http://ChiefNerd.id",
"url": "https://t.co/j6eXiZ1K2I",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 147886,
"followers_count": 889007,
"friends_count": 2169,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 3259,
"location": "United States",
"media_count": 11252,
"name": "Chief Nerd",
"normal_followers_count": 889007,
"pinned_tweet_ids_str": [
"1973219233124458944"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/69156861/1738454949",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1658949550751596546/zZkL3U76_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "TheChiefNerd",
"statuses_count": 28059,
"translator_type": "none",
"url": "https://t.co/j6eXiZ1K2I",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1621554793352253445",
"professional_type": "Creator",
"category": [
{
"id": 579,
"name": "Media & News",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973219233124458944"
],
"editable_until_msecs": "1759290700000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1548587",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 2462,
"bookmarked": false,
"created_at": "Wed Oct 01 02:51:40 +0000 2025",
"conversation_id_str": "1973219233124458944",
"display_text_range": [
0,
273
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/uny1gokRwQ",
"expanded_url": "https://x.com/TheChiefNerd/status/1973219233124458944/video/1",
"id_str": "1973219106250743808",
"indices": [
274,
297
],
"media_key": "13_1973219106250743808",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973219106250743808/img/Cw7UE98cf0NfkUie.jpg",
"type": "video",
"url": "https://t.co/uny1gokRwQ",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 1080,
"w": 1920,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1080,
"width": 1920,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 147733,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/pl/tY47m57CKwvnP1U4.m3u8?tag=21&v=5e7"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/480x270/pMGXBXpaSqh7kC0s.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/640x360/5UquLGbcmtSovf2W.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/1280x720/_JJHXQRnkRWbdQyp.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/1920x1080/idFXvOV9HDWol7fb.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973219106250743808"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/uny1gokRwQ",
"expanded_url": "https://x.com/TheChiefNerd/status/1973219233124458944/video/1",
"id_str": "1973219106250743808",
"indices": [
274,
297
],
"media_key": "13_1973219106250743808",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973219106250743808/img/Cw7UE98cf0NfkUie.jpg",
"type": "video",
"url": "https://t.co/uny1gokRwQ",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 1080,
"w": 1920,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1080,
"width": 1920,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 147733,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/pl/tY47m57CKwvnP1U4.m3u8?tag=21&v=5e7"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/480x270/pMGXBXpaSqh7kC0s.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/640x360/5UquLGbcmtSovf2W.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/1280x720/_JJHXQRnkRWbdQyp.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973219106250743808/vid/avc1/1920x1080/idFXvOV9HDWol7fb.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973219106250743808"
}
}
}
]
},
"favorite_count": 33771,
"favorited": false,
"full_text": "🚨 ROGAN: “The Charlie Kirk thing opened up my eyes. I never expected so many people would celebrate that man's murder. That is evil … especially when you're seeing people on the left, that are supposed to be … the inclusive people, celebrating gun violence. That's insane.” https://t.co/uny1gokRwQ",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 119,
"reply_count": 309,
"retweet_count": 4150,
"retweeted": false,
"user_id_str": "69156861",
"id_str": "1973219233124458944"
}
}
},
"legacy": {
"bookmark_count": 727,
"bookmarked": false,
"created_at": "Wed Oct 01 03:31:00 +0000 2025",
"conversation_id_str": "1973229132625711281",
"display_text_range": [
0,
269
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 10904,
"favorited": false,
"full_text": "One of the biggest lies ever told is that leftists (communists) are \"the compassionate ones.\" These are the most evil people to ever live. They are not compassionate, they have no morality, they are deeply dysgenic broken freaks filled with envious hate and resentment.",
"is_quote_status": true,
"lang": "en",
"quote_count": 50,
"quoted_status_id_str": "1973219233124458944",
"quoted_status_permalink": {
"url": "https://t.co/9y7LPT2sZK",
"expanded": "https://twitter.com/TheChiefNerd/status/1973219233124458944",
"display": "x.com/TheChiefNerd/s…"
},
"reply_count": 345,
"retweet_count": 1805,
"retweeted": false,
"user_id_str": "1498032293671325699",
"id_str": "1973229132625711281"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973318296524169692",
"sortIndex": "1973354675688177660",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973318296524169692",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973318296524169692"
],
"editable_until_msecs": "1759314319029",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"state": "Enabled"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 09:25:19 +0000 2025",
"conversation_id_str": "1973318296524169692",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1614879930885574656",
"name": "SMX 🇺🇸",
"screen_name": "iam_smx",
"indices": [
3,
11
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @iam_smx: Wikipedia should have just taken that $1 billion offer from Elon Musk, it's too late, the rival is coming: Grokipedia! https:/…",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 850,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973318296524169692",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973033072510783994",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjE0ODc5OTMwODg1NTc0NjU2",
"rest_id": "1614879930885574656",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Mon Jan 16 06:59:28 +0000 2023",
"default_profile": true,
"default_profile_image": false,
"description": "Innovation, Technology, Rockets & Tesla ignite my passion. Host of The Story Book. Sharing updates & info 24/7. Breaking World News! Motivation & Fun guaranteed",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 59345,
"followers_count": 135023,
"friends_count": 589,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 382,
"location": "",
"media_count": 7321,
"name": "SMX 🇺🇸",
"normal_followers_count": 135023,
"pinned_tweet_ids_str": [
"1972556356675936578"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1614879930885574656/1736364306",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1785421156859719680/gSkjB7g7_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "iam_smx",
"statuses_count": 39535,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1614897015388766209",
"professional_type": "Business",
"category": [
{
"id": 713,
"name": "Science & Technology",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": false,
"patreon_handle": ""
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973033072510783994"
],
"editable_until_msecs": "1759246316000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "565035",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 175,
"bookmarked": false,
"created_at": "Tue Sep 30 14:31:56 +0000 2025",
"conversation_id_str": "1973033072510783994",
"display_text_range": [
0,
118
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/cLBKfPRgyO",
"expanded_url": "https://x.com/iam_smx/status/1973033072510783994/photo/1",
"id_str": "1973033064885301248",
"indices": [
119,
142
],
"media_key": "3_1973033064885301248",
"media_url_https": "https://pbs.twimg.com/media/G2GfHnKWsAACYEj.jpg",
"type": "photo",
"url": "https://t.co/cLBKfPRgyO",
"ext_media_availability": {
"status": "Available"
},
"features": {
"all": {
"tags": [
{
"user_id": "1587601034339561472",
"name": "Tetsuo",
"screen_name": "tetsuoai",
"type": "user"
}
]
},
"large": {
"faces": [
{
"x": 189,
"y": 437,
"h": 175,
"w": 175
}
]
},
"medium": {
"faces": [
{
"x": 189,
"y": 437,
"h": 175,
"w": 175
}
]
},
"small": {
"faces": [
{
"x": 107,
"y": 247,
"h": 99,
"w": 99
}
]
},
"orig": {
"faces": [
{
"x": 189,
"y": 437,
"h": 175,
"w": 175
}
]
}
},
"sizes": {
"large": {
"h": 1200,
"w": 1200,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 680,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1200,
"width": 1200,
"focus_rects": [
{
"x": 0,
"y": 528,
"w": 1200,
"h": 672
},
{
"x": 0,
"y": 0,
"w": 1200,
"h": 1200
},
{
"x": 147,
"y": 0,
"w": 1053,
"h": 1200
},
{
"x": 510,
"y": 0,
"w": 600,
"h": 1200
},
{
"x": 0,
"y": 0,
"w": 1200,
"h": 1200
}
]
},
"media_results": {
"result": {
"media_key": "3_1973033064885301248"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/cLBKfPRgyO",
"expanded_url": "https://x.com/iam_smx/status/1973033072510783994/photo/1",
"id_str": "1973033064885301248",
"indices": [
119,
142
],
"media_key": "3_1973033064885301248",
"media_url_https": "https://pbs.twimg.com/media/G2GfHnKWsAACYEj.jpg",
"type": "photo",
"url": "https://t.co/cLBKfPRgyO",
"ext_media_availability": {
"status": "Available"
},
"features": {
"all": {
"tags": [
{
"user_id": "1587601034339561472",
"name": "Tetsuo",
"screen_name": "tetsuoai",
"type": "user"
}
]
},
"large": {
"faces": [
{
"x": 189,
"y": 437,
"h": 175,
"w": 175
}
]
},
"medium": {
"faces": [
{
"x": 189,
"y": 437,
"h": 175,
"w": 175
}
]
},
"small": {
"faces": [
{
"x": 107,
"y": 247,
"h": 99,
"w": 99
}
]
},
"orig": {
"faces": [
{
"x": 189,
"y": 437,
"h": 175,
"w": 175
}
]
}
},
"sizes": {
"large": {
"h": 1200,
"w": 1200,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 680,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1200,
"width": 1200,
"focus_rects": [
{
"x": 0,
"y": 528,
"w": 1200,
"h": 672
},
{
"x": 0,
"y": 0,
"w": 1200,
"h": 1200
},
{
"x": 147,
"y": 0,
"w": 1053,
"h": 1200
},
{
"x": 510,
"y": 0,
"w": 600,
"h": 1200
},
{
"x": 0,
"y": 0,
"w": 1200,
"h": 1200
}
]
},
"media_results": {
"result": {
"media_key": "3_1973033064885301248"
}
}
}
]
},
"favorite_count": 6539,
"favorited": false,
"full_text": "Wikipedia should have just taken that $1 billion offer from Elon Musk, it's too late, the rival is coming: Grokipedia! https://t.co/cLBKfPRgyO",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 49,
"reply_count": 413,
"retweet_count": 850,
"retweeted": false,
"user_id_str": "1614879930885574656",
"id_str": "1973033072510783994"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "promoted-tweet-1969504651968946488-fcdb90e03f0ddaa",
"sortIndex": "1973354675688177659",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1969504651968946488",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjE2NDQ5MjMxOTg3OTA0NTEy",
"rest_id": "1616449231987904512",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Fri Jan 20 14:55:22 +0000 2023",
"default_profile": true,
"default_profile_image": false,
"description": "All Domains: the web3 identity asset layer to create and trade web3 domains | Customizable for .everyone https://t.co/BLpj4GjUQ0",
"entities": {
"description": {
"urls": [
{
"display_url": "linktr.ee/AllDomains",
"expanded_url": "https://linktr.ee/AllDomains",
"url": "https://t.co/BLpj4GjUQ0",
"indices": [
105,
128
]
}
]
},
"url": {
"urls": [
{
"display_url": "alldomains.id",
"expanded_url": "https://alldomains.id/",
"url": "https://t.co/ip15LPPY2F",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 58403,
"followers_count": 154710,
"friends_count": 2470,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 126,
"location": "Multichain",
"media_count": 3978,
"name": "AllDomains 🧬",
"normal_followers_count": 154710,
"pinned_tweet_ids_str": [
"1962917586871714138"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1616449231987904512/1744796711",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1947292759867420672/dFDEjb4c_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "AllDomains_",
"statuses_count": 15713,
"translator_type": "none",
"url": "https://t.co/ip15LPPY2F",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1626225228547489798",
"professional_type": "Business",
"category": [
{
"id": 992,
"name": "Technology Supplier",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
}
},
"card": {
"rest_id": "card://1969504650283139072",
"legacy": {
"binding_values": [
{
"key": "unified_card",
"value": {
"string_value": "{\"type\":\"image_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Create your Solana idenity\",\"is_rtl\":false},\"subtitle\":{\"content\":\"alldomains.id\",\"is_rtl\":false},\"destination\":\"browser_1\"}},\"media_1\":{\"type\":\"media\",\"data\":{\"id\":\"3_1969502986494763008\",\"destination\":\"browser_1\"}}},\"destination_objects\":{\"browser_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://alldomains.id/domains/solana\",\"vanity\":\"alldomains.id\"}}}},\"components\":[\"media_1\",\"details_1\"],\"media_entities\":{\"3_1969502986494763008\":{\"id\":1969502986494763008,\"id_str\":\"1969502986494763008\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/G1UUiAYXYAAd6-j.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":0,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":702},{\"x\":20,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_user_id\":1616449231987904512,\"source_user_id_str\":\"1616449231987904512\",\"media_key\":\"3_1969502986494763008\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":37,\"green\":33,\"blue\":99},\"percentage\":41.83},{\"rgb\":{\"red\":229,\"green\":227,\"blue\":240},\"percentage\":25.67},{\"rgb\":{\"red\":157,\"green\":153,\"blue\":222},\"percentage\":17.36},{\"rgb\":{\"red\":14,\"green\":12,\"blue\":36},\"percentage\":8.86},{\"rgb\":{\"red\":45,\"green\":41,\"blue\":125},\"percentage\":2.58}]}},\"ttl\":-1}}}},\"experiment_signals\":{}}",
"type": "STRING"
}
},
{
"key": "card_url",
"value": {
"scribe_key": "card_url",
"string_value": "https://twitter.com",
"type": "STRING"
}
}
],
"card_platform": {
"platform": {
"audience": {
"name": "production"
},
"device": {
"name": "Swift",
"version": "12"
}
}
},
"name": "unified_card",
"url": "card://1969504650283139072",
"user_refs_results": []
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1969504651968946488"
],
"editable_until_msecs": "1758405075000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "107560",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels\" rel=\"nofollow\">advertiser-interface</a>",
"grok_analysis_button": false,
"legacy": {
"bookmark_count": 3,
"bookmarked": false,
"created_at": "Sat Sep 20 20:51:15 +0000 2025",
"conversation_id_str": "1969504651968946488",
"display_text_range": [
0,
87
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 38,
"favorited": false,
"full_text": "Simplify your wallet address to a personalized identity that is far easier to remember.",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 1,
"retweet_count": 6,
"retweeted": false,
"scopes": {
"followers": false
},
"user_id_str": "1616449231987904512",
"id_str": "1969504651968946488"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet",
"promotedMetadata": {
"advertiser_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjE2NDQ5MjMxOTg3OTA0NTEy",
"rest_id": "1616449231987904512",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Fri Jan 20 14:55:22 +0000 2023",
"default_profile": true,
"default_profile_image": false,
"description": "All Domains: the web3 identity asset layer to create and trade web3 domains | Customizable for .everyone https://t.co/BLpj4GjUQ0",
"entities": {
"description": {
"urls": [
{
"display_url": "linktr.ee/AllDomains",
"expanded_url": "https://linktr.ee/AllDomains",
"url": "https://t.co/BLpj4GjUQ0",
"indices": [
105,
128
]
}
]
},
"url": {
"urls": [
{
"display_url": "alldomains.id",
"expanded_url": "https://alldomains.id/",
"url": "https://t.co/ip15LPPY2F",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 58403,
"followers_count": 154710,
"friends_count": 2470,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 126,
"location": "Multichain",
"media_count": 3978,
"name": "AllDomains 🧬",
"normal_followers_count": 154710,
"pinned_tweet_ids_str": [
"1962917586871714138"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1616449231987904512/1744796711",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1947292759867420672/dFDEjb4c_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "AllDomains_",
"statuses_count": 15713,
"translator_type": "none",
"url": "https://t.co/ip15LPPY2F",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1626225228547489798",
"professional_type": "Business",
"category": [
{
"id": 992,
"name": "Technology Supplier",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
"adMetadataContainer": {
"renderLegacyWebsiteCard": false
},
"disclosureType": "NoDisclosure",
"experimentValues": [
{
"key": "ads_experiment_ids",
"value": "412345,400002,402022"
},
{
"key": "ads_budget_aware_experiment_id",
"value": "-1"
},
{
"key": "website_card_variation",
"value": "0"
}
],
"impressionId": "fcdb90e03f0ddaa",
"impressionString": "fcdb90e03f0ddaa",
"clickTrackingInfo": {
"urlParams": [
{
"key": "twclid",
"value": "2qhurg7icvib12f0wsglbw9ne"
}
]
}
}
}
}
},
{
"entryId": "who-to-follow-1973354675688177670",
"sortIndex": "1973354675688177658",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "who-to-follow-1973354675688177670-user-50393960",
"item": {
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo1MDM5Mzk2MA==",
"rest_id": "50393960",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Wed Jun 24 18:44:10 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "Sharing things I'm learning through my foundation work and other interests.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "gatesnot.es/tgn",
"expanded_url": "https://gatesnot.es/tgn",
"url": "https://t.co/TiXXwOGE95",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 550,
"followers_count": 66279143,
"friends_count": 572,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 117001,
"location": "Seattle, WA",
"media_count": 1530,
"name": "Bill Gates",
"normal_followers_count": 66279143,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/50393960/1745250848",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1879013694367252480/Gxa-Pspq_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "BillGates",
"statuses_count": 4516,
"translator_type": "regular",
"url": "https://t.co/TiXXwOGE95",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "suggest_who_to_follow",
"element": "user",
"details": {
"timelinesDetails": {
"injectionType": "WhoToFollow",
"controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
"sourceData": "DAABCgABEU/QwrbVc0AKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
}
}
}
}
},
{
"entryId": "who-to-follow-1973354675688177670-user-34743251",
"item": {
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozNDc0MzI1MQ==",
"rest_id": "34743251",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Thu Apr 23 21:53:30 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "SpaceX designs, manufactures and launches the world’s most advanced rockets and spacecraft",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "spacex.com",
"expanded_url": "http://spacex.com",
"url": "https://t.co/VOJ6qEctND",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 504,
"followers_count": 40108405,
"friends_count": 120,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 43665,
"location": "Earth",
"media_count": 4130,
"name": "SpaceX",
"normal_followers_count": 40108405,
"pinned_tweet_ids_str": [
"1972798064403357887"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/34743251/1681251194",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1697749409851985920/HbrI04tM_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "SpaceX",
"statuses_count": 10696,
"translator_type": "none",
"url": "https://t.co/VOJ6qEctND",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1681839322029502464",
"professional_type": "Business",
"category": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "suggest_who_to_follow",
"element": "user",
"details": {
"timelinesDetails": {
"injectionType": "WhoToFollow",
"controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
"sourceData": "DAABCgABEU/QwrbVc0AKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
}
}
}
}
},
{
"entryId": "who-to-follow-1973354675688177670-user-2455740283",
"item": {
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyNDU1NzQwMjgz",
"rest_id": "2455740283",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Mon Apr 21 00:28:42 +0000 2014",
"default_profile": false,
"default_profile_image": false,
"description": "New MrBeast or MrBeast Gaming video each Saturday!",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "teamwater.org",
"expanded_url": "http://teamwater.org",
"url": "https://t.co/v1pwp6rN7R",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 23205,
"followers_count": 33316154,
"friends_count": 2189,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 9066,
"location": "Follow me for a cookie",
"media_count": 971,
"name": "MrBeast",
"normal_followers_count": 33316154,
"pinned_tweet_ids_str": [
"1941802940768850033"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2455740283/1743017990",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/994592419705274369/RLplF55e_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "MrBeast",
"statuses_count": 7459,
"translator_type": "none",
"url": "https://t.co/v1pwp6rN7R",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679573344159510535",
"professional_type": "Creator",
"category": [
{
"id": 933,
"name": "Media Personality",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true
},
"super_follow_eligible": true
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "suggest_who_to_follow",
"element": "user",
"details": {
"timelinesDetails": {
"injectionType": "WhoToFollow",
"controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
"sourceData": "DAABCgABEU/QwrbVc0AKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
}
}
}
}
}
],
"displayType": "Vertical",
"header": {
"displayType": "Classic",
"text": "Who to follow",
"sticky": false
},
"footer": {
"displayType": "Classic",
"text": "Show more",
"landingUrl": {
"url": "twitter://connect_people?user_id=44196397&display_location=profile_wtf_showmore",
"urlType": "DeepLink"
}
},
"clientEventInfo": {
"component": "suggest_who_to_follow",
"details": {
"timelinesDetails": {
"injectionType": "WhoToFollow",
"controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
"sourceData": "DAABCgABEU/QwrbVc0AKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
}
}
}
}
},
{
"entryId": "tweet-1973317570917966037",
"sortIndex": "1973354675688177657",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973317570917966037",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973317570917966037"
],
"editable_until_msecs": "1759314146000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "3088527",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973158482779185369",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzI5ODA3Mg==",
"rest_id": "13298072",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Sun Feb 10 01:12:32 +0000 2008",
"default_profile": false,
"default_profile_image": false,
"description": "Electric vehicles, giant batteries & solar, AI & robotics / https://t.co/WbcKtqUxSs",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "http://votetesla.com",
"url": "https://t.co/WbcKtqUxSs",
"indices": [
60,
83
]
}
]
},
"url": {
"urls": [
{
"display_url": "tesla.com",
"expanded_url": "https://www.tesla.com",
"url": "https://t.co/EJC6qVEJnC",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 7239,
"followers_count": 24402751,
"friends_count": 74,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 27627,
"location": "",
"media_count": 1872,
"name": "Tesla",
"normal_followers_count": 24402751,
"pinned_tweet_ids_str": [
"1968695220754858305"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/13298072/1740542578",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1337607516008501250/6Ggc4S5n_normal.png",
"profile_interstitial_type": "",
"screen_name": "Tesla",
"statuses_count": 9815,
"translator_type": "none",
"url": "https://t.co/EJC6qVEJnC",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1590468365159636997",
"professional_type": "Business",
"category": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973158482779185369"
],
"editable_until_msecs": "1759276216000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "3918169",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"note_tweet": {
"is_expandable": true,
"note_tweet_results": {
"result": {
"id": "Tm90ZVR3ZWV0OjE5NzMxNTg0ODI2NTc1OTk0ODg=",
"text": "New Model Y Performance now available in the US\n\n– 3.3 secs 0-60\n– 155 mph top speed\n– 308 mi range\n\nHighlights\n– New front/rear fascia & carbon spoiler for better aerodynamics\n– Performance carbon spoiler = increased downforce, reduced drag\n– New 21\" Arachnid wheels + tires with staggered fitment to improve grip & steering\n– Adaptive damping adjusts handling + suspension for a smooth, stable ride\n– New Drive Modes give you greater control for high-speed driving\n– Increased charge capacity thanks to high-density battery cells\n– Quiet cabin with premium sound-damping materials & acoustic glass\n– Heated/ventilated front sport seats & heated, perforated rear seats with power recline\n\nAlso, added bolstering & side cushions that hold you in your seat when cornering + powered thigh cushion extenders for extra comfort\n\n– 16\" high-res touchscreen\n\nAnd when you're done having fun, FSD Supervised will drive you home",
"entity_set": {
"hashtags": [],
"symbols": [],
"urls": [],
"user_mentions": []
},
"richtext": {
"richtext_tags": [
{
"from_index": 0,
"to_index": 47,
"richtext_types": [
"Bold"
]
},
{
"from_index": 101,
"to_index": 111,
"richtext_types": [
"Bold"
]
}
]
},
"media": {
"inline_media": [
{
"media_id": "1973158374482255874",
"index": 919
},
{
"media_id": "1973158374151008257",
"index": 919
},
{
"media_id": "1973158374444531712",
"index": 919
},
{
"media_id": "1973158374457090052",
"index": 919
}
]
}
}
}
},
"grok_analysis_button": false,
"legacy": {
"bookmark_count": 315,
"bookmarked": false,
"created_at": "Tue Sep 30 22:50:16 +0000 2025",
"conversation_id_str": "1973158482779185369",
"display_text_range": [
0,
284
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374151008257",
"indices": [
285,
308
],
"media_key": "3_1973158374151008257",
"media_url_https": "https://pbs.twimg.com/media/G2IRFkjbsAEKJ2b.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1152,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2304,
"width": 4096,
"focus_rects": [
{
"x": 0,
"y": 10,
"w": 4096,
"h": 2294
},
{
"x": 793,
"y": 0,
"w": 2304,
"h": 2304
},
{
"x": 935,
"y": 0,
"w": 2021,
"h": 2304
},
{
"x": 1369,
"y": 0,
"w": 1152,
"h": 2304
},
{
"x": 0,
"y": 0,
"w": 4096,
"h": 2304
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374151008257"
}
}
},
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374444531712",
"indices": [
285,
308
],
"media_key": "3_1973158374444531712",
"media_url_https": "https://pbs.twimg.com/media/G2IRFlpagAALAVL.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 319,
"y": 601,
"h": 97,
"w": 97
},
{
"x": 257,
"y": 421,
"h": 143,
"w": 143
}
]
},
"medium": {
"faces": [
{
"x": 187,
"y": 352,
"h": 57,
"w": 57
},
{
"x": 150,
"y": 247,
"h": 84,
"w": 84
}
]
},
"small": {
"faces": [
{
"x": 106,
"y": 199,
"h": 32,
"w": 32
},
{
"x": 85,
"y": 140,
"h": 47,
"w": 47
}
]
},
"orig": {
"faces": [
{
"x": 586,
"y": 1102,
"h": 179,
"w": 179
},
{
"x": 472,
"y": 773,
"h": 263,
"w": 263
}
]
}
},
"sizes": {
"large": {
"h": 1152,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 382,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2110,
"width": 3752,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 3752,
"h": 2101
},
{
"x": 164,
"y": 0,
"w": 2110,
"h": 2110
},
{
"x": 294,
"y": 0,
"w": 1851,
"h": 2110
},
{
"x": 692,
"y": 0,
"w": 1055,
"h": 2110
},
{
"x": 0,
"y": 0,
"w": 3752,
"h": 2110
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374444531712"
}
}
},
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374457090052",
"indices": [
285,
308
],
"media_key": "3_1973158374457090052",
"media_url_https": "https://pbs.twimg.com/media/G2IRFlsaIAQfp0N.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1536,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 900,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 510,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 3072,
"width": 4096,
"focus_rects": [
{
"x": 0,
"y": 184,
"w": 4096,
"h": 2294
},
{
"x": 0,
"y": 0,
"w": 3072,
"h": 3072
},
{
"x": 0,
"y": 0,
"w": 2695,
"h": 3072
},
{
"x": 563,
"y": 0,
"w": 1536,
"h": 3072
},
{
"x": 0,
"y": 0,
"w": 4096,
"h": 3072
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374457090052"
}
}
},
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374482255874",
"indices": [
285,
308
],
"media_key": "3_1973158374482255874",
"media_url_https": "https://pbs.twimg.com/media/G2IRFlyaIAIKr62.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1152,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2304,
"width": 4096,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 4096,
"h": 2294
},
{
"x": 793,
"y": 0,
"w": 2304,
"h": 2304
},
{
"x": 935,
"y": 0,
"w": 2021,
"h": 2304
},
{
"x": 1369,
"y": 0,
"w": 1152,
"h": 2304
},
{
"x": 0,
"y": 0,
"w": 4096,
"h": 2304
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374482255874"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374151008257",
"indices": [
285,
308
],
"media_key": "3_1973158374151008257",
"media_url_https": "https://pbs.twimg.com/media/G2IRFkjbsAEKJ2b.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1152,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2304,
"width": 4096,
"focus_rects": [
{
"x": 0,
"y": 10,
"w": 4096,
"h": 2294
},
{
"x": 793,
"y": 0,
"w": 2304,
"h": 2304
},
{
"x": 935,
"y": 0,
"w": 2021,
"h": 2304
},
{
"x": 1369,
"y": 0,
"w": 1152,
"h": 2304
},
{
"x": 0,
"y": 0,
"w": 4096,
"h": 2304
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374151008257"
}
}
},
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374444531712",
"indices": [
285,
308
],
"media_key": "3_1973158374444531712",
"media_url_https": "https://pbs.twimg.com/media/G2IRFlpagAALAVL.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 319,
"y": 601,
"h": 97,
"w": 97
},
{
"x": 257,
"y": 421,
"h": 143,
"w": 143
}
]
},
"medium": {
"faces": [
{
"x": 187,
"y": 352,
"h": 57,
"w": 57
},
{
"x": 150,
"y": 247,
"h": 84,
"w": 84
}
]
},
"small": {
"faces": [
{
"x": 106,
"y": 199,
"h": 32,
"w": 32
},
{
"x": 85,
"y": 140,
"h": 47,
"w": 47
}
]
},
"orig": {
"faces": [
{
"x": 586,
"y": 1102,
"h": 179,
"w": 179
},
{
"x": 472,
"y": 773,
"h": 263,
"w": 263
}
]
}
},
"sizes": {
"large": {
"h": 1152,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 382,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2110,
"width": 3752,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 3752,
"h": 2101
},
{
"x": 164,
"y": 0,
"w": 2110,
"h": 2110
},
{
"x": 294,
"y": 0,
"w": 1851,
"h": 2110
},
{
"x": 692,
"y": 0,
"w": 1055,
"h": 2110
},
{
"x": 0,
"y": 0,
"w": 3752,
"h": 2110
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374444531712"
}
}
},
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374457090052",
"indices": [
285,
308
],
"media_key": "3_1973158374457090052",
"media_url_https": "https://pbs.twimg.com/media/G2IRFlsaIAQfp0N.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1536,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 900,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 510,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 3072,
"width": 4096,
"focus_rects": [
{
"x": 0,
"y": 184,
"w": 4096,
"h": 2294
},
{
"x": 0,
"y": 0,
"w": 3072,
"h": 3072
},
{
"x": 0,
"y": 0,
"w": 2695,
"h": 3072
},
{
"x": 563,
"y": 0,
"w": 1536,
"h": 3072
},
{
"x": 0,
"y": 0,
"w": 4096,
"h": 3072
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374457090052"
}
}
},
{
"display_url": "pic.x.com/Tz9W28nR8G",
"expanded_url": "https://x.com/Tesla/status/1973158482779185369/photo/1",
"id_str": "1973158374482255874",
"indices": [
285,
308
],
"media_key": "3_1973158374482255874",
"media_url_https": "https://pbs.twimg.com/media/G2IRFlyaIAIKr62.jpg",
"type": "photo",
"url": "https://t.co/Tz9W28nR8G",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1152,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2304,
"width": 4096,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 4096,
"h": 2294
},
{
"x": 793,
"y": 0,
"w": 2304,
"h": 2304
},
{
"x": 935,
"y": 0,
"w": 2021,
"h": 2304
},
{
"x": 1369,
"y": 0,
"w": 1152,
"h": 2304
},
{
"x": 0,
"y": 0,
"w": 4096,
"h": 2304
}
]
},
"media_results": {
"result": {
"media_key": "3_1973158374482255874"
}
}
}
]
},
"favorite_count": 6591,
"favorited": false,
"full_text": "New Model Y Performance now available in the US\n\n– 3.3 secs 0-60\n– 155 mph top speed\n– 308 mi range\n\nHighlights\n– New front/rear fascia & carbon spoiler for better aerodynamics\n– Performance carbon spoiler = increased downforce, reduced drag\n– New 21\" Arachnid wheels + tires with https://t.co/Tz9W28nR8G",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 254,
"reply_count": 596,
"retweet_count": 862,
"retweeted": false,
"user_id_str": "13298072",
"id_str": "1973158482779185369"
}
}
},
"legacy": {
"bookmark_count": 503,
"bookmarked": false,
"created_at": "Wed Oct 01 09:22:26 +0000 2025",
"conversation_id_str": "1973317570917966037",
"display_text_range": [
0,
0
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/tu4nztFwwG",
"expanded_url": "https://x.com/elonmusk/status/1973317570917966037/photo/1",
"id_str": "1973317567654854656",
"indices": [
0,
23
],
"media_key": "3_1973317567654854656",
"media_url_https": "https://pbs.twimg.com/media/G2Kh32kbAAAnVK3.jpg",
"type": "photo",
"url": "https://t.co/tu4nztFwwG",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1536,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 900,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 510,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1536,
"width": 2048,
"focus_rects": [
{
"x": 0,
"y": 92,
"w": 2048,
"h": 1147
},
{
"x": 0,
"y": 0,
"w": 1536,
"h": 1536
},
{
"x": 0,
"y": 0,
"w": 1347,
"h": 1536
},
{
"x": 281,
"y": 0,
"w": 768,
"h": 1536
},
{
"x": 0,
"y": 0,
"w": 2048,
"h": 1536
}
]
},
"media_results": {
"result": {
"media_key": "3_1973317567654854656"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/tu4nztFwwG",
"expanded_url": "https://x.com/elonmusk/status/1973317570917966037/photo/1",
"id_str": "1973317567654854656",
"indices": [
0,
23
],
"media_key": "3_1973317567654854656",
"media_url_https": "https://pbs.twimg.com/media/G2Kh32kbAAAnVK3.jpg",
"type": "photo",
"url": "https://t.co/tu4nztFwwG",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1536,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 900,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 510,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1536,
"width": 2048,
"focus_rects": [
{
"x": 0,
"y": 92,
"w": 2048,
"h": 1147
},
{
"x": 0,
"y": 0,
"w": 1536,
"h": 1536
},
{
"x": 0,
"y": 0,
"w": 1347,
"h": 1536
},
{
"x": 281,
"y": 0,
"w": 768,
"h": 1536
},
{
"x": 0,
"y": 0,
"w": 2048,
"h": 1536
}
]
},
"media_results": {
"result": {
"media_key": "3_1973317567654854656"
}
}
}
]
},
"favorite_count": 28205,
"favorited": false,
"full_text": "https://t.co/tu4nztFwwG",
"is_quote_status": true,
"lang": "zxx",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 142,
"quoted_status_id_str": "1973158482779185369",
"quoted_status_permalink": {
"url": "https://t.co/kNepL43eB0",
"expanded": "https://twitter.com/tesla/status/1973158482779185369",
"display": "x.com/tesla/status/1…"
},
"reply_count": 2207,
"retweet_count": 2079,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973317570917966037"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177672",
"sortIndex": "1973354675688177656",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "profile-conversation-1973354675688177672-tweet-1973221124290032044",
"dispensable": true,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973221124290032044",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzI5ODkxMzg5NDMwMjQzMzMw",
"rest_id": "1329891389430243330",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Fri Nov 20 20:56:37 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "@WhiteHouse Deputy Chief of Staff for Policy and Homeland Security Advisor | 45 & 47",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 19346,
"followers_count": 1571360,
"friends_count": 355,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 4594,
"location": "",
"media_count": 488,
"name": "Stephen Miller",
"normal_followers_count": 1571360,
"pinned_tweet_ids_str": [
"1969607240689631613"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1329891389430243330/1610400442",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1364996415731171329/d4WWN4ak_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "StephenM",
"statuses_count": 30865,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973221124290032044"
],
"editable_until_msecs": "1759291151000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "349386",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973015973189034068",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMjUxOTAwOTY2NzcwNzk0NDk4",
"rest_id": "1251900966770794498",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Sun Apr 19 15:50:38 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "Host and columnist @theblaze . Tapper of signs. The NYT prints my tweets. Buy the book: https://t.co/7aKw6RohuP",
"entities": {
"description": {
"urls": [
{
"display_url": "a.co/d/frU6YKM",
"expanded_url": "https://a.co/d/frU6YKM",
"url": "https://t.co/7aKw6RohuP",
"indices": [
88,
111
]
}
]
},
"url": {
"urls": [
{
"display_url": "auronmacintyre.com",
"expanded_url": "https://auronmacintyre.com/",
"url": "https://t.co/r62TDYkik3",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 89787,
"followers_count": 232747,
"friends_count": 735,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 1280,
"location": "",
"media_count": 4950,
"name": "Auron MacIntyre",
"normal_followers_count": 232747,
"pinned_tweet_ids_str": [
"1863666064833298868"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1251900966770794498/1673465776",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1904207020204384256/0EiZDevN_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "AuronMacintyre",
"statuses_count": 37400,
"translator_type": "none",
"url": "https://t.co/r62TDYkik3",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973015973189034068"
],
"editable_until_msecs": "1759242239000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "767712",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"quotedRefResult": {
"result": {
"__typename": "Tweet",
"rest_id": "1972834140161761614"
}
},
"legacy": {
"bookmark_count": 595,
"bookmarked": false,
"created_at": "Tue Sep 30 13:23:59 +0000 2025",
"conversation_id_str": "1973015973189034068",
"display_text_range": [
0,
182
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 20781,
"favorited": false,
"full_text": "If the left ever returns to power they will immediately open the border and start flying the entire population of Haiti into every red state as retribution \n\nNot joking even a little",
"is_quote_status": true,
"lang": "en",
"quote_count": 91,
"quoted_status_id_str": "1972834140161761614",
"quoted_status_permalink": {
"url": "https://t.co/JpiyMZ98Nw",
"expanded": "https://twitter.com/jhweissmann/status/1972834140161761614",
"display": "x.com/jhweissmann/st…"
},
"reply_count": 506,
"retweet_count": 2678,
"retweeted": false,
"user_id_str": "1251900966770794498",
"id_str": "1973015973189034068"
}
}
},
"legacy": {
"bookmark_count": 336,
"bookmarked": false,
"created_at": "Wed Oct 01 02:59:11 +0000 2025",
"conversation_id_str": "1973221124290032044",
"display_text_range": [
0,
48
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 18373,
"favorited": false,
"full_text": "The Left’s primary tool is weaponized migration.",
"is_quote_status": true,
"lang": "en",
"quote_count": 83,
"quoted_status_id_str": "1973015973189034068",
"quoted_status_permalink": {
"url": "https://t.co/SUtACronjg",
"expanded": "https://twitter.com/auronmacintyre/status/1973015973189034068",
"display": "x.com/auronmacintyre…"
},
"reply_count": 753,
"retweet_count": 2994,
"retweeted": false,
"user_id_str": "1329891389430243330",
"id_str": "1973221124290032044"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177672-tweet-1973295626332020824",
"dispensable": false,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973295626332020824",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973295626332020824"
],
"editable_until_msecs": "1759308914000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "36452",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 18,
"bookmarked": false,
"created_at": "Wed Oct 01 07:55:14 +0000 2025",
"conversation_id_str": "1973221124290032044",
"display_text_range": [
10,
11
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1329891389430243330",
"name": "Stephen Miller",
"screen_name": "StephenM",
"indices": [
0,
9
]
}
]
},
"favorite_count": 1408,
"favorited": false,
"full_text": "@StephenM 💯",
"in_reply_to_screen_name": "StephenM",
"in_reply_to_status_id_str": "1973221124290032044",
"in_reply_to_user_id_str": "1329891389430243330",
"is_quote_status": false,
"lang": "qme",
"quote_count": 5,
"reply_count": 98,
"retweet_count": 101,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973295626332020824"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
}
],
"metadata": {
"conversationMetadata": {
"allTweetIds": [
"1973221124290032044",
"1973295626332020824"
],
"enableDeduplication": true
}
},
"displayType": "VerticalConversation",
"clientEventInfo": {
"component": "suggest_ranked_organic_tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973295555423216052",
"sortIndex": "1973354675688177655",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973295555423216052",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973295555423216052"
],
"editable_until_msecs": "1759308897128",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:54:57 +0000 2025",
"conversation_id_str": "1973295555423216052",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1663701168839872512",
"name": "MAGA Voice",
"screen_name": "MAGAVoice",
"indices": [
3,
13
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @MAGAVoice: BREAKING 🚨 After Elon Musk told his 226 million followers he’s CANCELLING Netflix, the trend has gone VIRAL of people postin…",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 27110,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973295555423216052",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973153076883365940",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjYzNzAxMTY4ODM5ODcyNTEy",
"rest_id": "1663701168839872512",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed May 31 00:17:33 +0000 2023",
"default_profile": true,
"default_profile_image": false,
"description": "Want to take back OUR country? JOIN ME 🇺🇸 Donald Trump won🥇Proud Patriot. Pro Elon Musk",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 219397,
"followers_count": 1319366,
"friends_count": 520,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 2255,
"location": "TURN ON NOTIFICATIONS 🔔",
"media_count": 17350,
"name": "MAGA Voice",
"normal_followers_count": 1319366,
"pinned_tweet_ids_str": [
"1965914658050814073"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1663701168839872512/1733905728",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1866679989141377027/aex88zyV_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "MAGAVoice",
"statuses_count": 121150,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973153076883365940"
],
"editable_until_msecs": "1759274927000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "3939177",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 2876,
"bookmarked": false,
"created_at": "Tue Sep 30 22:28:47 +0000 2025",
"conversation_id_str": "1973153076883365940",
"display_text_range": [
0,
184
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/qfYcjSO0GI",
"expanded_url": "https://x.com/MAGAVoice/status/1973153076883365940/photo/1",
"id_str": "1973153067391651840",
"indices": [
185,
208
],
"media_key": "3_1973153067391651840",
"media_url_https": "https://pbs.twimg.com/media/G2IMQrVaEAAyG2e.jpg",
"type": "photo",
"url": "https://t.co/qfYcjSO0GI",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
},
"medium": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
},
"small": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
},
"orig": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
}
},
"sizes": {
"large": {
"h": 619,
"w": 604,
"resize": "fit"
},
"medium": {
"h": 619,
"w": 604,
"resize": "fit"
},
"small": {
"h": 619,
"w": 604,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 619,
"width": 604,
"focus_rects": [
{
"x": 0,
"y": 63,
"w": 604,
"h": 338
},
{
"x": 0,
"y": 0,
"w": 604,
"h": 604
},
{
"x": 23,
"y": 0,
"w": 543,
"h": 619
},
{
"x": 139,
"y": 0,
"w": 310,
"h": 619
},
{
"x": 0,
"y": 0,
"w": 604,
"h": 619
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973153067391651840"
}
}
},
{
"display_url": "pic.x.com/qfYcjSO0GI",
"expanded_url": "https://x.com/MAGAVoice/status/1973153076883365940/photo/1",
"id_str": "1973153067383263232",
"indices": [
185,
208
],
"media_key": "3_1973153067383263232",
"media_url_https": "https://pbs.twimg.com/media/G2IMQrTaEAAQtXO.jpg",
"type": "photo",
"url": "https://t.co/qfYcjSO0GI",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1364,
"w": 1320,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 1161,
"resize": "fit"
},
"small": {
"h": 680,
"w": 658,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1364,
"width": 1320,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1320,
"h": 739
},
{
"x": 0,
"y": 0,
"w": 1320,
"h": 1320
},
{
"x": 0,
"y": 0,
"w": 1196,
"h": 1364
},
{
"x": 169,
"y": 0,
"w": 682,
"h": 1364
},
{
"x": 0,
"y": 0,
"w": 1320,
"h": 1364
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973153067383263232"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/qfYcjSO0GI",
"expanded_url": "https://x.com/MAGAVoice/status/1973153076883365940/photo/1",
"id_str": "1973153067391651840",
"indices": [
185,
208
],
"media_key": "3_1973153067391651840",
"media_url_https": "https://pbs.twimg.com/media/G2IMQrVaEAAyG2e.jpg",
"type": "photo",
"url": "https://t.co/qfYcjSO0GI",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
},
"medium": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
},
"small": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
},
"orig": {
"faces": [
{
"x": 271,
"y": 198,
"h": 48,
"w": 48
}
]
}
},
"sizes": {
"large": {
"h": 619,
"w": 604,
"resize": "fit"
},
"medium": {
"h": 619,
"w": 604,
"resize": "fit"
},
"small": {
"h": 619,
"w": 604,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 619,
"width": 604,
"focus_rects": [
{
"x": 0,
"y": 63,
"w": 604,
"h": 338
},
{
"x": 0,
"y": 0,
"w": 604,
"h": 604
},
{
"x": 23,
"y": 0,
"w": 543,
"h": 619
},
{
"x": 139,
"y": 0,
"w": 310,
"h": 619
},
{
"x": 0,
"y": 0,
"w": 604,
"h": 619
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973153067391651840"
}
}
},
{
"display_url": "pic.x.com/qfYcjSO0GI",
"expanded_url": "https://x.com/MAGAVoice/status/1973153076883365940/photo/1",
"id_str": "1973153067383263232",
"indices": [
185,
208
],
"media_key": "3_1973153067383263232",
"media_url_https": "https://pbs.twimg.com/media/G2IMQrTaEAAQtXO.jpg",
"type": "photo",
"url": "https://t.co/qfYcjSO0GI",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1364,
"w": 1320,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 1161,
"resize": "fit"
},
"small": {
"h": 680,
"w": 658,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1364,
"width": 1320,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1320,
"h": 739
},
{
"x": 0,
"y": 0,
"w": 1320,
"h": 1320
},
{
"x": 0,
"y": 0,
"w": 1196,
"h": 1364
},
{
"x": 169,
"y": 0,
"w": 682,
"h": 1364
},
{
"x": 0,
"y": 0,
"w": 1320,
"h": 1364
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973153067383263232"
}
}
}
]
},
"favorite_count": 149661,
"favorited": false,
"full_text": "BREAKING 🚨 After Elon Musk told his 226 million followers he’s CANCELLING Netflix, the trend has gone VIRAL of people posting their cancelation\n\nIT’S TIME TO CANCEL AND BOYCOTT NETFLIX https://t.co/qfYcjSO0GI",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 1085,
"reply_count": 6639,
"retweet_count": 27110,
"retweeted": false,
"user_id_str": "1663701168839872512",
"id_str": "1973153076883365940"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973295485344686527",
"sortIndex": "1973354675688177654",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973295485344686527",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973295485344686527"
],
"editable_until_msecs": "1759308880420",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:54:40 +0000 2025",
"conversation_id_str": "1973295485344686527",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1874178374664323072",
"name": "Rep. Mark Harris",
"screen_name": "RepMarkHarrisNC",
"indices": [
3,
19
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @RepMarkHarrisNC: Iryna Zarutska's murderer was arrested 14 TIMES before killing her.\n\nLogan Federico's murderer was arrested 39 TIMES b…",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 11654,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973295485344686527",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1972843091557024209",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODc0MTc4Mzc0NjY0MzIzMDcy",
"rest_id": "1874178374664323072",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/HouseGOP",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1877085039948668928/f4AibqzY_bigger.jpg"
},
"description": "House Republicans",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Dec 31 19:38:58 +0000 2024",
"default_profile": true,
"default_profile_image": false,
"description": "Proudly Representing North Carolina’s 8th Congressional District 🇺🇸 @HouseAgGop @JudiciaryGOP @EdWorkforceCmte",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "markharris.house.gov",
"expanded_url": "https://markharris.house.gov/",
"url": "https://t.co/awpS6vYMMO",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3064,
"followers_count": 11357,
"friends_count": 866,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 139,
"location": "Washington, DC",
"media_count": 532,
"name": "Rep. Mark Harris",
"normal_followers_count": 11357,
"pinned_tweet_ids_str": [
"1970131395579199777"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1874178374664323072/1736041310",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1874178663303745536/Y2ttgCAw_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "RepMarkHarrisNC",
"statuses_count": 1608,
"translator_type": "none",
"url": "https://t.co/awpS6vYMMO",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1972843091557024209"
],
"editable_until_msecs": "1759201021000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "824282",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://studio.twitter.com\" rel=\"nofollow\">Twitter Media Studio</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 859,
"bookmarked": false,
"created_at": "Tue Sep 30 01:57:01 +0000 2025",
"conversation_id_str": "1972843091557024209",
"display_text_range": [
0,
239
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/9tRpmbHknK",
"expanded_url": "https://x.com/RepMarkHarrisNC/status/1972843091557024209/video/1",
"id_str": "1972839098399297536",
"indices": [
240,
263
],
"media_key": "13_1972839098399297536",
"media_url_https": "https://pbs.twimg.com/media/G2DxnoHWcAEskcS.jpg",
"type": "video",
"url": "https://t.co/9tRpmbHknK",
"additional_media_info": {
"title": "",
"description": "",
"embeddable": true,
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 464,
"w": 848,
"resize": "fit"
},
"medium": {
"h": 464,
"w": 848,
"resize": "fit"
},
"small": {
"h": 372,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 464,
"width": 848,
"focus_rects": []
},
"allow_download_status": {
"allow_download": false
},
"video_info": {
"aspect_ratio": [
53,
29
],
"duration_millis": 109266,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1972839098399297536/pl/umJpilQ67_MYBaI4.m3u8?tag=21&v=d25"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972839098399297536/vid/avc1/492x270/rAyXIWeiNT7wwtMm.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972839098399297536/vid/avc1/848x464/oKzvWr-hPqZdrcde.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1972839098399297536"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "56413858",
"name": "FOX Business",
"screen_name": "FoxBusiness",
"indices": [
227,
239
]
}
]
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/9tRpmbHknK",
"expanded_url": "https://x.com/RepMarkHarrisNC/status/1972843091557024209/video/1",
"id_str": "1972839098399297536",
"indices": [
240,
263
],
"media_key": "13_1972839098399297536",
"media_url_https": "https://pbs.twimg.com/media/G2DxnoHWcAEskcS.jpg",
"type": "video",
"url": "https://t.co/9tRpmbHknK",
"additional_media_info": {
"title": "",
"description": "",
"embeddable": true,
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 464,
"w": 848,
"resize": "fit"
},
"medium": {
"h": 464,
"w": 848,
"resize": "fit"
},
"small": {
"h": 372,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 464,
"width": 848,
"focus_rects": []
},
"allow_download_status": {
"allow_download": false
},
"video_info": {
"aspect_ratio": [
53,
29
],
"duration_millis": 109266,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1972839098399297536/pl/umJpilQ67_MYBaI4.m3u8?tag=21&v=d25"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972839098399297536/vid/avc1/492x270/rAyXIWeiNT7wwtMm.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1972839098399297536/vid/avc1/848x464/oKzvWr-hPqZdrcde.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1972839098399297536"
}
}
}
]
},
"favorite_count": 48756,
"favorited": false,
"full_text": "Iryna Zarutska's murderer was arrested 14 TIMES before killing her.\n\nLogan Federico's murderer was arrested 39 TIMES before killing her.\n\nLack of funding and law enforcement is not the issue — pro-crime Democrat policies are.\n\n@FoxBusiness https://t.co/9tRpmbHknK",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 201,
"reply_count": 851,
"retweet_count": 11654,
"retweeted": false,
"user_id_str": "1874178374664323072",
"id_str": "1972843091557024209"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177675",
"sortIndex": "1973354675688177653",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "profile-conversation-1973354675688177675-tweet-1973212941240639776",
"dispensable": true,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973212941240639776",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNDk4MDMyMjkzNjcxMzI1Njk5",
"rest_id": "1498032293671325699",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Sun Feb 27 20:28:33 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "Artist | Aesthetics | History - In the Arena",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "buymeacoffee.com/aesthetica1",
"expanded_url": "https://buymeacoffee.com/aesthetica1",
"url": "https://t.co/BDYI464G9q",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 68791,
"followers_count": 521781,
"friends_count": 777,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 1984,
"location": "",
"media_count": 6509,
"name": "Aesthetica",
"normal_followers_count": 521781,
"pinned_tweet_ids_str": [
"1966952427049152973"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1498032293671325699/1721664062",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1854663809077510147/Q_4h4AQ0_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Anc_Aesthetics",
"statuses_count": 23146,
"translator_type": "none",
"url": "https://t.co/BDYI464G9q",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1618082388008902658",
"professional_type": "Creator",
"category": [
{
"id": 1017,
"name": "Artist",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973212941240639776"
],
"editable_until_msecs": "1759289200000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "34997",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 34,
"bookmarked": false,
"created_at": "Wed Oct 01 02:26:40 +0000 2025",
"conversation_id_str": "1973212941240639776",
"display_text_range": [
0,
108
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 3091,
"favorited": false,
"full_text": "Why does the FBI still use the ADL to train their agents?\n\nFiring the ADL should have been a day 1 decision.",
"is_quote_status": false,
"lang": "en",
"quote_count": 10,
"reply_count": 47,
"retweet_count": 370,
"retweeted": false,
"user_id_str": "1498032293671325699",
"id_str": "1973212941240639776"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177675-tweet-1973214635605242317",
"dispensable": true,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973214635605242317",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo4NDE3MjQ4NjY0MjQzMjAwMDA=",
"rest_id": "841724866424320000",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Tue Mar 14 18:57:01 +0000 2017",
"default_profile": true,
"default_profile_image": false,
"description": "-Satire runs in my blood-\n\nWill make you laugh-\n\nMight anger you-\n\nJoin in on the fun either way\n🇺🇸🇺🇸",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "linktr.ee/IcedViews",
"expanded_url": "http://linktr.ee/IcedViews",
"url": "https://t.co/nyjdhdgdAq",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 14758,
"followers_count": 4581,
"friends_count": 314,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 4,
"location": "",
"media_count": 1541,
"name": "Isaac",
"normal_followers_count": 4581,
"pinned_tweet_ids_str": [
"1967974877207605462"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/841724866424320000/1758173547",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1911592384774778880/P5VOqdxV_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "IcedViews",
"statuses_count": 15179,
"translator_type": "none",
"url": "https://t.co/nyjdhdgdAq",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973214635605242317"
],
"editable_until_msecs": "1759289604000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "6165",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 7,
"bookmarked": false,
"created_at": "Wed Oct 01 02:33:24 +0000 2025",
"conversation_id_str": "1973212941240639776",
"display_text_range": [
16,
134
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1498032293671325699",
"name": "Aesthetica",
"screen_name": "Anc_Aesthetics",
"indices": [
0,
15
]
}
]
},
"favorite_count": 138,
"favorited": false,
"full_text": "@Anc_Aesthetics ADL is the funniest comedian organization ever to be created just for labeling BLM as \"right wing political violence\"",
"in_reply_to_screen_name": "Anc_Aesthetics",
"in_reply_to_status_id_str": "1973212941240639776",
"in_reply_to_user_id_str": "1498032293671325699",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 4,
"retweet_count": 7,
"retweeted": false,
"user_id_str": "841724866424320000",
"id_str": "1973214635605242317"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177675-tweet-1973295400317772190",
"dispensable": false,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973295400317772190",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973295400317772190"
],
"editable_until_msecs": "1759308860000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "9121",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 7,
"bookmarked": false,
"created_at": "Wed Oct 01 07:54:20 +0000 2025",
"conversation_id_str": "1973212941240639776",
"display_text_range": [
27,
28
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "841724866424320000",
"name": "Isaac",
"screen_name": "IcedViews",
"indices": [
0,
10
]
},
{
"id_str": "1498032293671325699",
"name": "Aesthetica",
"screen_name": "Anc_Aesthetics",
"indices": [
11,
26
]
}
]
},
"favorite_count": 302,
"favorited": false,
"full_text": "@IcedViews @Anc_Aesthetics 😂",
"in_reply_to_screen_name": "IcedViews",
"in_reply_to_status_id_str": "1973214635605242317",
"in_reply_to_user_id_str": "841724866424320000",
"is_quote_status": false,
"lang": "qme",
"quote_count": 5,
"reply_count": 41,
"retweet_count": 33,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973295400317772190"
},
"superFollowsReplyUserResult": {
"result": {
"__typename": "User",
"legacy": {
"screen_name": "Anc_Aesthetics"
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
}
],
"metadata": {
"conversationMetadata": {
"allTweetIds": [
"1973212941240639776",
"1973214635605242317",
"1973295400317772190"
],
"enableDeduplication": true
}
},
"displayType": "VerticalConversation",
"clientEventInfo": {
"component": "suggest_ranked_organic_tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177676",
"sortIndex": "1973354675688177652",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "profile-conversation-1973354675688177676-tweet-1973295346077098299",
"dispensable": false,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973295346077098299",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973295346077098299"
],
"editable_until_msecs": "1759308847000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "15432",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 9,
"bookmarked": false,
"created_at": "Wed Oct 01 07:54:07 +0000 2025",
"conversation_id_str": "1973212941240639776",
"display_text_range": [
16,
34
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1498032293671325699",
"name": "Aesthetica",
"screen_name": "Anc_Aesthetics",
"indices": [
0,
15
]
}
]
},
"favorite_count": 753,
"favorited": false,
"full_text": "@Anc_Aesthetics That needs to stop",
"in_reply_to_screen_name": "Anc_Aesthetics",
"in_reply_to_status_id_str": "1973212941240639776",
"in_reply_to_user_id_str": "1498032293671325699",
"is_quote_status": false,
"lang": "en",
"quote_count": 4,
"reply_count": 54,
"retweet_count": 62,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973295346077098299"
},
"superFollowsReplyUserResult": {
"result": {
"__typename": "User",
"legacy": {
"screen_name": "Anc_Aesthetics"
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
}
],
"metadata": {
"conversationMetadata": {
"allTweetIds": [
"1973212941240639776",
"1973295346077098299"
],
"enableDeduplication": true
}
},
"displayType": "VerticalConversation",
"clientEventInfo": {
"component": "suggest_ranked_organic_tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177677",
"sortIndex": "1973354675688177651",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "profile-conversation-1973354675688177677-tweet-1972818770696843507",
"dispensable": true,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1972818770696843507",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo4NzIyNjY0NQ==",
"rest_id": "87226645",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Nov 03 16:30:55 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "2016 Tesla Follower, 2022 Model 3 LR FSD/All-in Tesla stock 🚀, NYC FSD Beta, Tesla memes, Pokémon,Marvel, EDM, BTC, Referral code: https://t.co/hw8KezuAGi",
"entities": {
"description": {
"urls": [
{
"display_url": "ts.la/justin72364",
"expanded_url": "http://ts.la/justin72364",
"url": "https://t.co/hw8KezuAGi",
"indices": [
131,
154
]
}
]
},
"url": {
"urls": [
{
"display_url": "youtube.com/user/strengthP…",
"expanded_url": "https://youtube.com/user/strengthPlan",
"url": "https://t.co/gjaQH6Lhce",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 28638,
"followers_count": 15910,
"friends_count": 6351,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 73,
"location": "Washington DC",
"media_count": 8445,
"name": "strengthPlan",
"normal_followers_count": 15910,
"pinned_tweet_ids_str": [
"1652184622116098048"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/87226645/1682577175",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1512955144861888521/XnSBUBsQ_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "strengthPlan",
"statuses_count": 72664,
"translator_type": "none",
"url": "https://t.co/gjaQH6Lhce",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1589499620094361600",
"professional_type": "Business",
"category": [
{
"id": 225,
"name": "Bubble Tea Shop",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"venmo_handle": "strengthplan"
}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1972818770696843507"
],
"editable_until_msecs": "1759195222000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "147653",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 68,
"bookmarked": false,
"created_at": "Tue Sep 30 00:20:22 +0000 2025",
"conversation_id_str": "1972818770696843507",
"display_text_range": [
0,
177
],
"entities": {
"hashtags": [
{
"indices": [
172,
177
],
"text": "tsla"
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 3532,
"favorited": false,
"full_text": "I have $2.2 million in Tesla stock lol\n\nI have no other stocks\n\nEverything is in Tesla stock\n\nTesla fails I fail\n\nTesla succeeds I succeed\n\nThat is how I want to live life #tsla",
"is_quote_status": false,
"lang": "en",
"quote_count": 10,
"reply_count": 255,
"retweet_count": 132,
"retweeted": false,
"user_id_str": "87226645",
"id_str": "1972818770696843507"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177677-tweet-1973295147132788844",
"dispensable": false,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973295147132788844",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973295147132788844"
],
"editable_until_msecs": "1759308799000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "11291",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 21,
"bookmarked": false,
"created_at": "Wed Oct 01 07:53:19 +0000 2025",
"conversation_id_str": "1972818770696843507",
"display_text_range": [
14,
25
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "87226645",
"name": "strengthPlan",
"screen_name": "strengthPlan",
"indices": [
0,
13
]
}
]
},
"favorite_count": 577,
"favorited": false,
"full_text": "@strengthPlan Wise choice",
"in_reply_to_screen_name": "strengthPlan",
"in_reply_to_status_id_str": "1972818770696843507",
"in_reply_to_user_id_str": "87226645",
"is_quote_status": false,
"lang": "en",
"quote_count": 6,
"reply_count": 64,
"retweet_count": 56,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973295147132788844"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
}
],
"metadata": {
"conversationMetadata": {
"allTweetIds": [
"1972818770696843507",
"1973295147132788844"
],
"enableDeduplication": true
}
},
"displayType": "VerticalConversation",
"clientEventInfo": {
"component": "suggest_ranked_organic_tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "promoted-tweet-1968328372653527509-fcdfa7a641055c0",
"sortIndex": "1973354675688177650",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1968328372653527509",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODkyMTEyMTI=",
"rest_id": "189211212",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Fri Sep 10 17:29:22 +0000 2010",
"default_profile": false,
"default_profile_image": false,
"description": "A video games company devoted to creating and publishing meaningful games. Join our discord! https://t.co/0CbXTdAI3T",
"entities": {
"description": {
"urls": [
{
"display_url": "discord.gg/11bitstudios",
"expanded_url": "http://discord.gg/11bitstudios",
"url": "https://t.co/0CbXTdAI3T",
"indices": [
93,
116
]
}
]
},
"url": {
"urls": [
{
"display_url": "linktr.ee/11bit_studios",
"expanded_url": "https://linktr.ee/11bit_studios",
"url": "https://t.co/yvrc0pmVj6",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 15923,
"followers_count": 55638,
"friends_count": 1081,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 605,
"location": "Worldwide",
"media_count": 2833,
"name": "11 bit studios | The Alters OUT NOW",
"normal_followers_count": 55638,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/189211212/1758200554",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1961009985665519616/h70hmUT7_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "11bitstudios",
"statuses_count": 12477,
"translator_type": "none",
"url": "https://t.co/yvrc0pmVj6",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"card": {
"rest_id": "card://1968328370309218304",
"legacy": {
"binding_values": [
{
"key": "unified_card",
"value": {
"string_value": "{\"type\":\"video_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Play Now | PS5 & Xbox Series X|S\",\"is_rtl\":false},\"subtitle\":{\"content\":\"playstation.com\",\"is_rtl\":false},\"destination\":\"override_browser_with_docked_media_1\"}},\"media_1\":{\"type\":\"media\",\"data\":{\"id\":\"13_1968326391662862336\",\"destination\":\"browser_with_docked_media_1\"}}},\"destination_objects\":{\"browser_with_docked_media_1\":{\"type\":\"browser_with_docked_media\",\"data\":{\"url_data\":{\"url\":\"https://store.playstation.com/en-us/concept/10008442/\",\"vanity\":\"playstation.com\"},\"media_id\":\"13_1968326391662862336\"}},\"override_browser_with_docked_media_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://store.playstation.com/en-us/concept/10008442/\",\"vanity\":\"playstation.com\"}}}},\"components\":[\"media_1\",\"details_1\"],\"media_entities\":{\"13_1968326391662862336\":{\"id\":1968326391662862336,\"id_str\":\"1968326391662862336\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/amplify_video_thumb/1968326391662862336/img/uvuuqyvKkZM4txw5.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"video\",\"original_info\":{\"width\":1920,\"height\":1080},\"sizes\":{\"large\":{\"w\":1920,\"h\":1080,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":675,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":383,\"resize\":\"fit\"}},\"source_user_id\":189211212,\"source_user_id_str\":\"189211212\",\"video_info\":{\"aspect_ratio\":[16,9],\"duration_millis\":30000,\"variants\":[{\"bitrate\":2176000,\"content_type\":\"video/mp4\",\"url\":\"https://video.twimg.com/amplify_video/1968326391662862336/vid/avc1/1280x720/yEfNtR2SOoEG2YPA.mp4?tag=21\"},{\"bitrate\":256000,\"content_type\":\"video/mp4\",\"url\":\"https://video.twimg.com/amplify_video/1968326391662862336/vid/avc1/480x270/gz7jVfJqYgxyV63U.mp4?tag=21\"},{\"content_type\":\"application/x-mpegURL\",\"url\":\"https://video.twimg.com/amplify_video/1968326391662862336/pl/zdWnT_EMDko_bda2.m3u8?tag=21\"},{\"bitrate\":832000,\"content_type\":\"video/mp4\",\"url\":\"https://video.twimg.com/amplify_video/1968326391662862336/vid/avc1/640x360/Ol7HIKlqXCExuZZu.mp4?tag=21\"},{\"bitrate\":10368000,\"content_type\":\"video/mp4\",\"url\":\"https://video.twimg.com/amplify_video/1968326391662862336/vid/avc1/1920x1080/6TyPXa6pX5Nx9nSM.mp4?tag=21\"}]},\"media_key\":\"13_1968326391662862336\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":8,\"green\":9,\"blue\":12},\"percentage\":100.0}]}},\"ttl\":-1}}}},\"experiment_signals\":{}}",
"type": "STRING"
}
},
{
"key": "card_url",
"value": {
"scribe_key": "card_url",
"string_value": "https://twitter.com",
"type": "STRING"
}
}
],
"card_platform": {
"platform": {
"audience": {
"name": "production"
},
"device": {
"name": "Swift",
"version": "12"
}
}
},
"name": "unified_card",
"url": "card://1968328370309218304",
"user_refs_results": []
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1968328372653527509"
],
"editable_until_msecs": "1758124628000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "665990",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels\" rel=\"nofollow\">advertiser-interface</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 18,
"bookmarked": false,
"created_at": "Wed Sep 17 14:57:08 +0000 2025",
"conversation_id_str": "1968328372653527509",
"display_text_range": [
0,
127
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 397,
"favorited": false,
"full_text": "❄️ Hope rises, New Londoners.\n\nFrostpunk 2 is OUT NOW on console. Play today on PS5 & Xbox Series X|S, free with Game Pass.",
"is_quote_status": false,
"lang": "en",
"quote_count": 2,
"reply_count": 45,
"retweet_count": 60,
"retweeted": false,
"scopes": {
"followers": false
},
"user_id_str": "189211212",
"id_str": "1968328372653527509"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet",
"promotedMetadata": {
"advertiser_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODkyMTEyMTI=",
"rest_id": "189211212",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Fri Sep 10 17:29:22 +0000 2010",
"default_profile": false,
"default_profile_image": false,
"description": "A video games company devoted to creating and publishing meaningful games. Join our discord! https://t.co/0CbXTdAI3T",
"entities": {
"description": {
"urls": [
{
"display_url": "discord.gg/11bitstudios",
"expanded_url": "http://discord.gg/11bitstudios",
"url": "https://t.co/0CbXTdAI3T",
"indices": [
93,
116
]
}
]
},
"url": {
"urls": [
{
"display_url": "linktr.ee/11bit_studios",
"expanded_url": "https://linktr.ee/11bit_studios",
"url": "https://t.co/yvrc0pmVj6",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 15923,
"followers_count": 55638,
"friends_count": 1081,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 605,
"location": "Worldwide",
"media_count": 2833,
"name": "11 bit studios | The Alters OUT NOW",
"normal_followers_count": 55638,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/189211212/1758200554",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1961009985665519616/h70hmUT7_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "11bitstudios",
"statuses_count": 12477,
"translator_type": "none",
"url": "https://t.co/yvrc0pmVj6",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"adMetadataContainer": {
"renderLegacyWebsiteCard": false
},
"disclosureType": "NoDisclosure",
"experimentValues": [
{
"key": "ads_experiment_ids",
"value": "412345,400002,402022"
},
{
"key": "ads_budget_aware_experiment_id",
"value": "-1"
}
],
"impressionId": "fcdfa7a641055c0",
"impressionString": "fcdfa7a641055c0",
"clickTrackingInfo": {
"urlParams": [
{
"key": "twclid",
"value": "2-3ud2hzkugo7s4nku8murtu42u"
}
]
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177679",
"sortIndex": "1973354675688177649",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "profile-conversation-1973354675688177679-tweet-1973225612732244272",
"dispensable": true,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973225612732244272",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNTg3NjAxMDM0MzM5NTYxNDcy",
"rest_id": "1587601034339561472",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed Nov 02 00:22:51 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "Low-level dev since '94 | CS/Math & C/Assembly\nProjects: @7etsuo @beeldcoin @groktprompt\n\nc/asm 🇺🇸",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "tetsuoproject.com",
"expanded_url": "https://www.tetsuoproject.com",
"url": "https://t.co/0h5yrXKNo2",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 122707,
"followers_count": 212432,
"friends_count": 1297,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 881,
"location": "Neo Tokyo",
"media_count": 3184,
"name": "Tetsuo",
"normal_followers_count": 212432,
"pinned_tweet_ids_str": [
"1972879056803958976"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1587601034339561472/1751822202",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1941908983314362368/Wbfh_wgx_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "tetsuoai",
"statuses_count": 12742,
"translator_type": "none",
"url": "https://t.co/0h5yrXKNo2",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1603858867515174912",
"professional_type": "Business",
"category": [
{
"id": 715,
"name": "Software Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "bc1qpurp542vwmncs4ktr46yghhjrnzmpy2ug4jvpe",
"ethereum_handle": "0xA4809b3247F76dF79C0F8D0C9464bef997dF482F",
"patreon_handle": "7etsuo"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973225612732244272"
],
"editable_until_msecs": "1759292221000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "504072",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 37,
"bookmarked": false,
"created_at": "Wed Oct 01 03:17:01 +0000 2025",
"conversation_id_str": "1973225612732244272",
"display_text_range": [
0,
9
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 1646,
"favorited": false,
"full_text": "MACROHARD",
"is_quote_status": false,
"lang": "fr",
"quote_count": 31,
"reply_count": 176,
"retweet_count": 235,
"retweeted": false,
"user_id_str": "1587601034339561472",
"id_str": "1973225612732244272"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177679-tweet-1973294962252062936",
"dispensable": false,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973294962252062936",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973294962252062936"
],
"editable_until_msecs": "1759308755000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "10763",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 10,
"bookmarked": false,
"created_at": "Wed Oct 01 07:52:35 +0000 2025",
"conversation_id_str": "1973225612732244272",
"display_text_range": [
10,
31
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1587601034339561472",
"name": "Tetsuo",
"screen_name": "tetsuoai",
"indices": [
0,
9
]
}
]
},
"favorite_count": 312,
"favorited": false,
"full_text": "@tetsuoai It’s gonna be amazing",
"in_reply_to_screen_name": "tetsuoai",
"in_reply_to_status_id_str": "1973225612732244272",
"in_reply_to_user_id_str": "1587601034339561472",
"is_quote_status": false,
"lang": "en",
"quote_count": 5,
"reply_count": 52,
"retweet_count": 30,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973294962252062936"
},
"superFollowsReplyUserResult": {
"result": {
"__typename": "User",
"legacy": {
"screen_name": "tetsuoai"
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
}
],
"metadata": {
"conversationMetadata": {
"allTweetIds": [
"1973225612732244272",
"1973294962252062936"
],
"enableDeduplication": true
}
},
"displayType": "VerticalConversation",
"clientEventInfo": {
"component": "suggest_ranked_organic_tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973294883814383685",
"sortIndex": "1973354675688177648",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973294883814383685",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973294883814383685"
],
"editable_until_msecs": "1759308737004",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:52:17 +0000 2025",
"conversation_id_str": "1973294883814383685",
"display_text_range": [
0,
23
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1587601034339561472",
"name": "Tetsuo",
"screen_name": "tetsuoai",
"indices": [
3,
12
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @tetsuoai: MACROHARD",
"is_quote_status": false,
"lang": "fr",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 235,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973294883814383685",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973225612732244272",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNTg3NjAxMDM0MzM5NTYxNDcy",
"rest_id": "1587601034339561472",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed Nov 02 00:22:51 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "Low-level dev since '94 | CS/Math & C/Assembly\nProjects: @7etsuo @beeldcoin @groktprompt\n\nc/asm 🇺🇸",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "tetsuoproject.com",
"expanded_url": "https://www.tetsuoproject.com",
"url": "https://t.co/0h5yrXKNo2",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 122707,
"followers_count": 212432,
"friends_count": 1297,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 881,
"location": "Neo Tokyo",
"media_count": 3184,
"name": "Tetsuo",
"normal_followers_count": 212432,
"pinned_tweet_ids_str": [
"1972879056803958976"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1587601034339561472/1751822202",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1941908983314362368/Wbfh_wgx_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "tetsuoai",
"statuses_count": 12742,
"translator_type": "none",
"url": "https://t.co/0h5yrXKNo2",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1603858867515174912",
"professional_type": "Business",
"category": [
{
"id": 715,
"name": "Software Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "bc1qpurp542vwmncs4ktr46yghhjrnzmpy2ug4jvpe",
"ethereum_handle": "0xA4809b3247F76dF79C0F8D0C9464bef997dF482F",
"patreon_handle": "7etsuo"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973225612732244272"
],
"editable_until_msecs": "1759292221000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "504072",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 37,
"bookmarked": false,
"created_at": "Wed Oct 01 03:17:01 +0000 2025",
"conversation_id_str": "1973225612732244272",
"display_text_range": [
0,
9
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 1646,
"favorited": false,
"full_text": "MACROHARD",
"is_quote_status": false,
"lang": "fr",
"quote_count": 31,
"reply_count": 176,
"retweet_count": 235,
"retweeted": false,
"user_id_str": "1587601034339561472",
"id_str": "1973225612732244272"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973294528254844976",
"sortIndex": "1973354675688177647",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973294528254844976",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973294528254844976"
],
"editable_until_msecs": "1759308652232",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:50:52 +0000 2025",
"conversation_id_str": "1973294528254844976",
"display_text_range": [
0,
139
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1881451105454002176",
"name": "Rapid Response 47",
"screen_name": "RapidResponse47",
"indices": [
3,
19
]
},
{
"id_str": "1883257372740591616",
"name": "Secretary of War Pete Hegseth",
"screen_name": "SecWar",
"indices": [
22,
29
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @RapidResponse47: .@SecWar: \"If women can make it, excellent. If not, it is what it is... It will also mean that weak men won't qualify…",
"is_quote_status": true,
"lang": "en",
"quote_count": 0,
"quoted_status_id_str": "1973006492405240086",
"quoted_status_permalink": {
"url": "https://t.co/mxkLUwvnDg",
"expanded": "https://twitter.com/RapidResponse47/status/1973006492405240086",
"display": "x.com/RapidResponse4…"
},
"reply_count": 0,
"retweet_count": 7582,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973294528254844976",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973007611198107694",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODgxNDUxMTA1NDU0MDAyMTc2",
"rest_id": "1881451105454002176",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/WhiteHouse",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1916971216620982274/1DsLEcqW_bigger.jpg"
},
"description": "The White House",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Mon Jan 20 21:18:05 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "Official White House Rapid Response account. Supporting @POTUS's America First agenda and holding the Fake News accountable. MAGA!",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "wh.gov",
"expanded_url": "http://wh.gov",
"url": "https://t.co/8qhSUMpp7C",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 186,
"followers_count": 1248207,
"friends_count": 58,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 4320,
"location": "🇺🇸🇺🇸🇺🇸",
"media_count": 10066,
"name": "Rapid Response 47",
"normal_followers_count": 1248207,
"pinned_tweet_ids_str": [
"1969155493701571049"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1881451105454002176/1748989837",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1883970867215876096/HK4lwY1m_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "RapidResponse47",
"statuses_count": 15949,
"translator_type": "none",
"url": "https://t.co/8qhSUMpp7C",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973007611198107694"
],
"editable_until_msecs": "1759240245000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "4563862",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973006492405240086",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODgxNDUxMTA1NDU0MDAyMTc2",
"rest_id": "1881451105454002176",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/WhiteHouse",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1916971216620982274/1DsLEcqW_bigger.jpg"
},
"description": "The White House",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Mon Jan 20 21:18:05 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "Official White House Rapid Response account. Supporting @POTUS's America First agenda and holding the Fake News accountable. MAGA!",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "wh.gov",
"expanded_url": "http://wh.gov",
"url": "https://t.co/8qhSUMpp7C",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 186,
"followers_count": 1248207,
"friends_count": 58,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 4320,
"location": "🇺🇸🇺🇸🇺🇸",
"media_count": 10066,
"name": "Rapid Response 47",
"normal_followers_count": 1248207,
"pinned_tweet_ids_str": [
"1969155493701571049"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1881451105454002176/1748989837",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1883970867215876096/HK4lwY1m_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "RapidResponse47",
"statuses_count": 15949,
"translator_type": "none",
"url": "https://t.co/8qhSUMpp7C",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973006492405240086"
],
"editable_until_msecs": "1759239979000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "4599224",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 909,
"bookmarked": false,
"created_at": "Tue Sep 30 12:46:19 +0000 2025",
"conversation_id_str": "1973006492405240086",
"display_text_range": [
0,
269
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/diAHWfKOBY",
"expanded_url": "https://x.com/RapidResponse47/status/1973006492405240086/video/1",
"id_str": "1973005352653205504",
"indices": [
270,
293
],
"media_key": "13_1973005352653205504",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973005352653205504/img/ATk-jPZbuqrEx4NF.jpg",
"type": "video",
"url": "https://t.co/diAHWfKOBY",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 233523,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/pl/G38AgXmTvtl68Y-j.m3u8?tag=21&v=6f6"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/vid/avc1/480x270/06NlvKUgouSg2qFO.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/vid/avc1/640x360/IX32XjD7l7eUdy8m.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/vid/avc1/1280x720/263-gjyIWjPkb_h1.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973005352653205504"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1883257372740591616",
"name": "Secretary of War Pete Hegseth",
"screen_name": "SecWar",
"indices": [
1,
8
]
}
]
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/diAHWfKOBY",
"expanded_url": "https://x.com/RapidResponse47/status/1973006492405240086/video/1",
"id_str": "1973005352653205504",
"indices": [
270,
293
],
"media_key": "13_1973005352653205504",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973005352653205504/img/ATk-jPZbuqrEx4NF.jpg",
"type": "video",
"url": "https://t.co/diAHWfKOBY",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 233523,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/pl/G38AgXmTvtl68Y-j.m3u8?tag=21&v=6f6"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/vid/avc1/480x270/06NlvKUgouSg2qFO.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/vid/avc1/640x360/IX32XjD7l7eUdy8m.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973005352653205504/vid/avc1/1280x720/263-gjyIWjPkb_h1.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973005352653205504"
}
}
}
]
},
"favorite_count": 14978,
"favorited": false,
"full_text": ".@SecWar announces new directives to ensure that every military Combat MOS and Combat Arms position will return \"to the highest male standard only — because this job is life or death.\"\n\n\"Standards must be met... it's common sense and core to who we are and what we do.\" https://t.co/diAHWfKOBY",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 329,
"reply_count": 916,
"retweet_count": 2845,
"retweeted": false,
"user_id_str": "1881451105454002176",
"id_str": "1973006492405240086"
}
}
},
"legacy": {
"bookmark_count": 2242,
"bookmarked": false,
"created_at": "Tue Sep 30 12:50:45 +0000 2025",
"conversation_id_str": "1973007611198107694",
"display_text_range": [
0,
192
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/sUm0DmvfvC",
"expanded_url": "https://x.com/RapidResponse47/status/1973007611198107694/video/1",
"id_str": "1973006710966018048",
"indices": [
193,
216
],
"media_key": "13_1973006710966018048",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973006710966018048/img/CxBWu_NI_weWekcW.jpg",
"type": "video",
"url": "https://t.co/sUm0DmvfvC",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 82036,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/pl/v1KrLTxdUUbEOyb5.m3u8?tag=21&v=30f"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/vid/avc1/480x270/hNXEkN33M-sORaLe.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/vid/avc1/640x360/EJ1F7bL7_8Ru5xSb.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/vid/avc1/1280x720/eDejj_E2boN1MD7g.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973006710966018048"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1883257372740591616",
"name": "Secretary of War Pete Hegseth",
"screen_name": "SecWar",
"indices": [
1,
8
]
}
]
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/sUm0DmvfvC",
"expanded_url": "https://x.com/RapidResponse47/status/1973007611198107694/video/1",
"id_str": "1973006710966018048",
"indices": [
193,
216
],
"media_key": "13_1973006710966018048",
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1973006710966018048/img/CxBWu_NI_weWekcW.jpg",
"type": "video",
"url": "https://t.co/sUm0DmvfvC",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 720,
"w": 1280,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 720,
"width": 1280,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 82036,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/pl/v1KrLTxdUUbEOyb5.m3u8?tag=21&v=30f"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/vid/avc1/480x270/hNXEkN33M-sORaLe.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/vid/avc1/640x360/EJ1F7bL7_8Ru5xSb.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973006710966018048/vid/avc1/1280x720/eDejj_E2boN1MD7g.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973006710966018048"
}
}
}
]
},
"favorite_count": 50910,
"favorited": false,
"full_text": ".@SecWar: \"If women can make it, excellent. If not, it is what it is... It will also mean that weak men won't qualify — because we're not playing games. This is combat. This is life or death.\" https://t.co/sUm0DmvfvC",
"is_quote_status": true,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 662,
"quoted_status_id_str": "1973006492405240086",
"quoted_status_permalink": {
"url": "https://t.co/mxkLUwvnDg",
"expanded": "https://twitter.com/RapidResponse47/status/1973006492405240086",
"display": "x.com/RapidResponse4…"
},
"reply_count": 1538,
"retweet_count": 7582,
"retweeted": false,
"user_id_str": "1881451105454002176",
"id_str": "1973007611198107694"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177682",
"sortIndex": "1973354675688177646",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "profile-conversation-1973354675688177682-tweet-1972906394484699642",
"dispensable": true,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1972906394484699642",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo3ODUyMzMwMA==",
"rest_id": "78523300",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Wed Sep 30 05:31:28 +0000 2009",
"default_profile": true,
"default_profile_image": false,
"description": "My YouTube channel: https://t.co/4Pj1u1KIzQ",
"entities": {
"description": {
"urls": [
{
"display_url": "youtube.com/@JamesWoodsOff…",
"expanded_url": "https://www.youtube.com/@JamesWoodsOfficial/videos",
"url": "https://t.co/4Pj1u1KIzQ",
"indices": [
20,
43
]
}
]
},
"url": {
"urls": [
{
"display_url": "jameswoods.com",
"expanded_url": "http://jameswoods.com",
"url": "https://t.co/ux8QwOdICR",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 22476,
"followers_count": 5107538,
"friends_count": 5630,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 12722,
"location": "",
"media_count": 8598,
"name": "James Woods",
"normal_followers_count": 5107538,
"pinned_tweet_ids_str": [
"1972492550679466434"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/78523300/1603295247",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/796482667340382211/CoV8077b_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "RealJamesWoods",
"statuses_count": 43752,
"translator_type": "none",
"url": "https://t.co/ux8QwOdICR",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1972906394484699642"
],
"editable_until_msecs": "1759216113000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "773935",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 2699,
"bookmarked": false,
"created_at": "Tue Sep 30 06:08:33 +0000 2025",
"conversation_id_str": "1972906394484699642",
"display_text_range": [
0,
27
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/k26UFh5tji",
"expanded_url": "https://x.com/RealJamesWoods/status/1972906394484699642/photo/1",
"id_str": "1972906391565418496",
"indices": [
28,
51
],
"media_key": "3_1972906391565418496",
"media_url_https": "https://pbs.twimg.com/media/G2Er6QRawAAkWTJ.jpg",
"type": "photo",
"url": "https://t.co/k26UFh5tji",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 22,
"y": 87,
"h": 227,
"w": 227
}
]
},
"medium": {
"faces": [
{
"x": 22,
"y": 87,
"h": 227,
"w": 227
}
]
},
"small": {
"faces": [
{
"x": 15,
"y": 61,
"h": 160,
"w": 160
}
]
},
"orig": {
"faces": [
{
"x": 22,
"y": 87,
"h": 227,
"w": 227
}
]
}
},
"sizes": {
"large": {
"h": 726,
"w": 959,
"resize": "fit"
},
"medium": {
"h": 726,
"w": 959,
"resize": "fit"
},
"small": {
"h": 515,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 726,
"width": 959,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 959,
"h": 537
},
{
"x": 233,
"y": 0,
"w": 726,
"h": 726
},
{
"x": 322,
"y": 0,
"w": 637,
"h": 726
},
{
"x": 562,
"y": 0,
"w": 363,
"h": 726
},
{
"x": 0,
"y": 0,
"w": 959,
"h": 726
}
]
},
"media_results": {
"result": {
"media_key": "3_1972906391565418496"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/k26UFh5tji",
"expanded_url": "https://x.com/RealJamesWoods/status/1972906394484699642/photo/1",
"id_str": "1972906391565418496",
"indices": [
28,
51
],
"media_key": "3_1972906391565418496",
"media_url_https": "https://pbs.twimg.com/media/G2Er6QRawAAkWTJ.jpg",
"type": "photo",
"url": "https://t.co/k26UFh5tji",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 22,
"y": 87,
"h": 227,
"w": 227
}
]
},
"medium": {
"faces": [
{
"x": 22,
"y": 87,
"h": 227,
"w": 227
}
]
},
"small": {
"faces": [
{
"x": 15,
"y": 61,
"h": 160,
"w": 160
}
]
},
"orig": {
"faces": [
{
"x": 22,
"y": 87,
"h": 227,
"w": 227
}
]
}
},
"sizes": {
"large": {
"h": 726,
"w": 959,
"resize": "fit"
},
"medium": {
"h": 726,
"w": 959,
"resize": "fit"
},
"small": {
"h": 515,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 726,
"width": 959,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 959,
"h": 537
},
{
"x": 233,
"y": 0,
"w": 726,
"h": 726
},
{
"x": 322,
"y": 0,
"w": 637,
"h": 726
},
{
"x": 562,
"y": 0,
"w": 363,
"h": 726
},
{
"x": 0,
"y": 0,
"w": 959,
"h": 726
}
]
},
"media_results": {
"result": {
"media_key": "3_1972906391565418496"
}
}
}
]
},
"favorite_count": 58652,
"favorited": false,
"full_text": "He’s spinning in his grave. https://t.co/k26UFh5tji",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 396,
"reply_count": 1211,
"retweet_count": 14375,
"retweeted": false,
"user_id_str": "78523300",
"id_str": "1972906394484699642"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177682-tweet-1973294373065597420",
"dispensable": false,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973294373065597420",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973294373065597420"
],
"editable_until_msecs": "1759308615000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "64117",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 66,
"bookmarked": false,
"created_at": "Wed Oct 01 07:50:15 +0000 2025",
"conversation_id_str": "1972906394484699642",
"display_text_range": [
16,
122
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "78523300",
"name": "James Woods",
"screen_name": "RealJamesWoods",
"indices": [
0,
15
]
}
]
},
"favorite_count": 4196,
"favorited": false,
"full_text": "@RealJamesWoods I hold one passport now & forever:\n\nAmerica.\n\nI will live & die here. \n\nOr Mars (part of America).",
"in_reply_to_screen_name": "RealJamesWoods",
"in_reply_to_status_id_str": "1972906394484699642",
"in_reply_to_user_id_str": "78523300",
"is_quote_status": false,
"lang": "en",
"quote_count": 40,
"reply_count": 325,
"retweet_count": 337,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973294373065597420"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
}
],
"metadata": {
"conversationMetadata": {
"allTweetIds": [
"1972906394484699642",
"1973294373065597420"
],
"enableDeduplication": true
}
},
"displayType": "VerticalConversation",
"clientEventInfo": {
"component": "suggest_ranked_organic_tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973293568166101058",
"sortIndex": "1973354675688177645",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973293568166101058",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973293568166101058"
],
"editable_until_msecs": "1759308423329",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:47:03 +0000 2025",
"conversation_id_str": "1973293568166101058",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1879644163769335808",
"name": "The White House",
"screen_name": "WhiteHouse",
"indices": [
3,
14
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @WhiteHouse: The Democrat Party wants:\n\n❌ Open borders \n❌ ‘Transgender’ for everybody\n❌ Men competing in women’s sports\n❌ Crime and lawl…",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 4233,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973293568166101058",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973113142667518389",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODc5NjQ0MTYzNzY5MzM1ODA4",
"rest_id": "1879644163769335808",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Jan 15 21:37:54 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "The Golden Age of America Begins Right Now.\n📱 Text USA to 45470 to receive alerts.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "wh.gov",
"expanded_url": "http://wh.gov",
"url": "https://t.co/0BqS4u1FRp",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 237,
"followers_count": 2816241,
"friends_count": 6,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 5604,
"location": "Washington, DC",
"media_count": 2641,
"name": "The White House",
"normal_followers_count": 2816241,
"pinned_tweet_ids_str": [
"1969783747139514536"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1879644163769335808/1745877308",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1916971216620982274/1DsLEcqW_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "WhiteHouse",
"statuses_count": 8629,
"translator_type": "none",
"url": "https://t.co/0BqS4u1FRp",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973113142667518389"
],
"editable_until_msecs": "1759265406000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1227044",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 715,
"bookmarked": false,
"created_at": "Tue Sep 30 19:50:06 +0000 2025",
"conversation_id_str": "1973113142667518389",
"display_text_range": [
0,
240
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 24775,
"favorited": false,
"full_text": "The Democrat Party wants:\n\n❌ Open borders \n❌ ‘Transgender’ for everybody\n❌ Men competing in women’s sports\n❌ Crime and lawlessness in our streets\n❌ Cashless bail policies over the safety and security of our nation\n\nIt's never America First.",
"is_quote_status": false,
"lang": "en",
"quote_count": 505,
"reply_count": 2037,
"retweet_count": 4233,
"retweeted": false,
"user_id_str": "1879644163769335808",
"id_str": "1973113142667518389"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973293490072330355",
"sortIndex": "1973354675688177644",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973293490072330355",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973293490072330355"
],
"editable_until_msecs": "1759308404710",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:46:44 +0000 2025",
"conversation_id_str": "1973293490072330355",
"display_text_range": [
0,
127
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/fmkbPNO457",
"expanded_url": "https://x.com/tetsuoai/status/1973188422945894747/photo/1",
"id_str": "1973188098680037380",
"indices": [
104,
127
],
"media_key": "3_1973188098680037380",
"media_url_https": "https://pbs.twimg.com/media/G2IsHxDaIAQi6p4.jpg",
"source_status_id_str": "1973188422945894747",
"source_user_id_str": "1587601034339561472",
"type": "photo",
"url": "https://t.co/fmkbPNO457",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1278,
"w": 1562,
"resize": "fit"
},
"medium": {
"h": 982,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 556,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1278,
"width": 1562,
"focus_rects": [
{
"x": 0,
"y": 382,
"w": 1562,
"h": 875
},
{
"x": 0,
"y": 0,
"w": 1278,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1121,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 639,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1562,
"h": 1278
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973188098680037380"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1587601034339561472",
"name": "Tetsuo",
"screen_name": "tetsuoai",
"indices": [
3,
12
]
}
]
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/fmkbPNO457",
"expanded_url": "https://x.com/tetsuoai/status/1973188422945894747/photo/1",
"id_str": "1973188098680037380",
"indices": [
104,
127
],
"media_key": "3_1973188098680037380",
"media_url_https": "https://pbs.twimg.com/media/G2IsHxDaIAQi6p4.jpg",
"source_status_id_str": "1973188422945894747",
"source_user_id_str": "1587601034339561472",
"type": "photo",
"url": "https://t.co/fmkbPNO457",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1278,
"w": 1562,
"resize": "fit"
},
"medium": {
"h": 982,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 556,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1278,
"width": 1562,
"focus_rects": [
{
"x": 0,
"y": 382,
"w": 1562,
"h": 875
},
{
"x": 0,
"y": 0,
"w": 1278,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1121,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 639,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1562,
"h": 1278
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973188098680037380"
}
}
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @tetsuoai: Grok Code Fast 1 and Grok 4 Fast are still holding the #1 and #2 positions on OpenRouter. https://t.co/fmkbPNO457",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 0,
"reply_count": 0,
"retweet_count": 258,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973293490072330355",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973188422945894747",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNTg3NjAxMDM0MzM5NTYxNDcy",
"rest_id": "1587601034339561472",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed Nov 02 00:22:51 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "Low-level dev since '94 | CS/Math & C/Assembly\nProjects: @7etsuo @beeldcoin @groktprompt\n\nc/asm 🇺🇸",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "tetsuoproject.com",
"expanded_url": "https://www.tetsuoproject.com",
"url": "https://t.co/0h5yrXKNo2",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 122707,
"followers_count": 212432,
"friends_count": 1297,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 881,
"location": "Neo Tokyo",
"media_count": 3184,
"name": "Tetsuo",
"normal_followers_count": 212432,
"pinned_tweet_ids_str": [
"1972879056803958976"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1587601034339561472/1751822202",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1941908983314362368/Wbfh_wgx_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "tetsuoai",
"statuses_count": 12742,
"translator_type": "none",
"url": "https://t.co/0h5yrXKNo2",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1603858867515174912",
"professional_type": "Business",
"category": [
{
"id": 715,
"name": "Software Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "bc1qpurp542vwmncs4ktr46yghhjrnzmpy2ug4jvpe",
"ethereum_handle": "0xA4809b3247F76dF79C0F8D0C9464bef997dF482F",
"patreon_handle": "7etsuo"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973188422945894747"
],
"editable_until_msecs": "1759283354000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "487295",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 50,
"bookmarked": false,
"created_at": "Wed Oct 01 00:49:14 +0000 2025",
"conversation_id_str": "1973188422945894747",
"display_text_range": [
0,
89
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/fmkbPNO457",
"expanded_url": "https://x.com/tetsuoai/status/1973188422945894747/photo/1",
"id_str": "1973188098680037380",
"indices": [
90,
113
],
"media_key": "3_1973188098680037380",
"media_url_https": "https://pbs.twimg.com/media/G2IsHxDaIAQi6p4.jpg",
"type": "photo",
"url": "https://t.co/fmkbPNO457",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1278,
"w": 1562,
"resize": "fit"
},
"medium": {
"h": 982,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 556,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1278,
"width": 1562,
"focus_rects": [
{
"x": 0,
"y": 382,
"w": 1562,
"h": 875
},
{
"x": 0,
"y": 0,
"w": 1278,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1121,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 639,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1562,
"h": 1278
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973188098680037380"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/fmkbPNO457",
"expanded_url": "https://x.com/tetsuoai/status/1973188422945894747/photo/1",
"id_str": "1973188098680037380",
"indices": [
90,
113
],
"media_key": "3_1973188098680037380",
"media_url_https": "https://pbs.twimg.com/media/G2IsHxDaIAQi6p4.jpg",
"type": "photo",
"url": "https://t.co/fmkbPNO457",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1278,
"w": 1562,
"resize": "fit"
},
"medium": {
"h": 982,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 556,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1278,
"width": 1562,
"focus_rects": [
{
"x": 0,
"y": 382,
"w": 1562,
"h": 875
},
{
"x": 0,
"y": 0,
"w": 1278,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1121,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 639,
"h": 1278
},
{
"x": 0,
"y": 0,
"w": 1562,
"h": 1278
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1973188098680037380"
}
}
}
]
},
"favorite_count": 1386,
"favorited": false,
"full_text": "Grok Code Fast 1 and Grok 4 Fast are still holding the #1 and #2 positions on OpenRouter. https://t.co/fmkbPNO457",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 6,
"reply_count": 118,
"retweet_count": 258,
"retweeted": false,
"user_id_str": "1587601034339561472",
"id_str": "1973188422945894747"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1973293457369342394",
"sortIndex": "1973354675688177643",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973293457369342394",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973293457369342394"
],
"editable_until_msecs": "1759308396913",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Wed Oct 01 07:46:36 +0000 2025",
"conversation_id_str": "1973293457369342394",
"display_text_range": [
0,
140
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "816683274076614656",
"name": "John Kennedy",
"screen_name": "SenJohnKennedy",
"indices": [
3,
18
]
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "RT @SenJohnKennedy: The loon wing of the Democratic Party thinks that if a cop has to shoot a criminal, it’s automatically the cop’s fault.…",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 6674,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973293457369342394",
"retweeted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1973187355361030174",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo4MTY2ODMyNzQwNzY2MTQ2NTY=",
"rest_id": "816683274076614656",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/SenateGOP",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1924453133050122240/LnQNgj1x_bigger.jpg"
},
"description": "Senate Republicans",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Jan 04 16:30:40 +0000 2017",
"default_profile": true,
"default_profile_image": false,
"description": "Official account of U.S. Senator John Kennedy of Louisiana. Facebook: https://t.co/1Tq61Jy0Gi Instagram: https://t.co/OdPLA7x1ZS",
"entities": {
"description": {
"urls": [
{
"display_url": "facebook.com/SenatorJohnKen…",
"expanded_url": "http://facebook.com/SenatorJohnKennedy",
"url": "https://t.co/1Tq61Jy0Gi",
"indices": [
70,
93
]
},
{
"display_url": "instagram.com/senjohnkennedy",
"expanded_url": "http://instagram.com/senjohnkennedy",
"url": "https://t.co/OdPLA7x1ZS",
"indices": [
105,
128
]
}
]
},
"url": {
"urls": [
{
"display_url": "kennedy.senate.gov",
"expanded_url": "https://www.kennedy.senate.gov/",
"url": "https://t.co/ZZnq2vhAXw",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 685,
"followers_count": 1612426,
"friends_count": 1338,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 3421,
"location": "Louisiana",
"media_count": 2549,
"name": "John Kennedy",
"normal_followers_count": 1612426,
"pinned_tweet_ids_str": [
"1395854377278218242"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/816683274076614656/1608232124",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1478828894878945282/oc8JVTd1_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "SenJohnKennedy",
"statuses_count": 6431,
"translator_type": "none",
"url": "https://t.co/ZZnq2vhAXw",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973187355361030174"
],
"editable_until_msecs": "1759283100000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "839156",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://studio.twitter.com\" rel=\"nofollow\">Twitter Media Studio</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 914,
"bookmarked": false,
"created_at": "Wed Oct 01 00:45:00 +0000 2025",
"conversation_id_str": "1973187355361030174",
"display_text_range": [
0,
276
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/Ue4c3B84Tz",
"expanded_url": "https://x.com/SenJohnKennedy/status/1973187355361030174/video/1",
"id_str": "1973168174842478592",
"indices": [
277,
300
],
"media_key": "13_1973168174842478592",
"media_url_https": "https://pbs.twimg.com/media/G2IaOHEXMAA2W7w.jpg",
"type": "video",
"url": "https://t.co/Ue4c3B84Tz",
"additional_media_info": {
"title": "",
"description": "",
"embeddable": true,
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 790,
"w": 1408,
"resize": "fit"
},
"medium": {
"h": 673,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 382,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 790,
"width": 1408,
"focus_rects": []
},
"allow_download_status": {
"allow_download": false
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 120578,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/pl/M47pX9zcj4lJt88I.m3u8?tag=21&v=a0f"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/480x270/b7c5d99hW3KRokQo.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/640x360/Bj0YdYS0fJcKKXRc.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/1280x720/RfUdHFvo41VqWKpS.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/1920x1080/QtKNlhASJ5jpC1Hf.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973168174842478592"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/Ue4c3B84Tz",
"expanded_url": "https://x.com/SenJohnKennedy/status/1973187355361030174/video/1",
"id_str": "1973168174842478592",
"indices": [
277,
300
],
"media_key": "13_1973168174842478592",
"media_url_https": "https://pbs.twimg.com/media/G2IaOHEXMAA2W7w.jpg",
"type": "video",
"url": "https://t.co/Ue4c3B84Tz",
"additional_media_info": {
"title": "",
"description": "",
"embeddable": true,
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 790,
"w": 1408,
"resize": "fit"
},
"medium": {
"h": 673,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 382,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 790,
"width": 1408,
"focus_rects": []
},
"allow_download_status": {
"allow_download": false
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 120578,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/pl/M47pX9zcj4lJt88I.m3u8?tag=21&v=a0f"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/480x270/b7c5d99hW3KRokQo.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/640x360/Bj0YdYS0fJcKKXRc.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/1280x720/RfUdHFvo41VqWKpS.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1973168174842478592/vid/avc1/1920x1080/QtKNlhASJ5jpC1Hf.mp4?tag=21"
}
]
},
"media_results": {
"result": {
"media_key": "13_1973168174842478592"
}
}
}
]
},
"favorite_count": 37740,
"favorited": false,
"full_text": "The loon wing of the Democratic Party thinks that if a cop has to shoot a criminal, it’s automatically the cop’s fault.\n\nBut if a criminal shoots a cop, they think it’s the gun’s fault.\n\nAs long as the far left is running our nation’s cities, we’ll have a major crime problem. https://t.co/Ue4c3B84Tz",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 112,
"reply_count": 559,
"retweet_count": 6674,
"retweeted": false,
"user_id_str": "816683274076614656",
"id_str": "1973187355361030174"
}
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177686",
"sortIndex": "1973354675688177642",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "profile-conversation-1973354675688177686-tweet-1973204931302793349",
"dispensable": true,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973204931302793349",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNTU5NTU2NjYwNjQwODQ5OTIx",
"rest_id": "1559556660640849921",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Tue Aug 16 15:05:12 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "Unincorporated Think Tank ~~ Focus: Govt Efficiency, Civil Rights, Victim Advocacy\n~ ~ \n \nSubscriptions now open. Wallets at https://t.co/93jny1km4W",
"entities": {
"description": {
"urls": [
{
"display_url": "fentasyl.com",
"expanded_url": "http://fentasyl.com",
"url": "https://t.co/93jny1km4W",
"indices": [
141,
164
]
}
]
},
"url": {
"urls": [
{
"display_url": "fentasyl.com",
"expanded_url": "https://fentasyl.com",
"url": "https://t.co/PO3Id6fsru",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 4488,
"followers_count": 181190,
"friends_count": 492,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 755,
"location": "data",
"media_count": 1335,
"name": "~~datahazard~~",
"normal_followers_count": 181190,
"pinned_tweet_ids_str": [
"1973239930966122564"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1559556660640849921/1678040024",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1769078926544949248/1aWVXbsP_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "fentasyl",
"statuses_count": 4525,
"translator_type": "none",
"url": "https://t.co/PO3Id6fsru",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1624910847461019648",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "1FENTASYLnuesY1YmLy9hxzYUsrgnBifnp",
"ethereum_handle": "0x12345678901165D2d72B4aBdC78DDdC50195b01D"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973204931302793349"
],
"editable_until_msecs": "1759287290000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "22616",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"grok_analysis_button": true,
"quoted_status_result": {
"result": {
"__typename": "TweetWithVisibilityResults",
"tweet": {
"rest_id": "1973156828377653752",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTY3MDIyNg==",
"rest_id": "19670226",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed Jan 28 19:31:55 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "To stop the defamation of the Jewish people, and secure justice and fair treatment to all. @JGreenblattADL, @ADL_Tracker, @adlisrael #FightingHateForGood 🎗️",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "adl.org/about/who-we-a…",
"expanded_url": "https://www.adl.org/about/who-we-are",
"url": "https://t.co/RzsdBJHTJo",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 9053,
"followers_count": 336504,
"friends_count": 3719,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 1849,
"location": "New York City",
"media_count": 7899,
"name": "ADL",
"normal_followers_count": 336504,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/19670226/1679936208",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1022583206770606080/IaqT81NV_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "ADL",
"statuses_count": 38506,
"translator_type": "none",
"url": "https://t.co/RzsdBJHTJo",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1480664167803727876",
"professional_type": "Business",
"category": [
{
"id": 688,
"name": "Non-Governmental & Nonprofit Organization ",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"initial_tweet_id": "1973152948512305563",
"edit_control_initial": {
"edit_tweet_ids": [
"1973152948512305563",
"1973156828377653752"
],
"editable_until_msecs": "1759274896000",
"is_edit_eligible": true,
"edits_remaining": "4"
}
},
"previous_counts": {
"bookmark_count": 0,
"favorite_count": 0,
"quote_count": 1,
"reply_count": 1,
"retweet_count": 0
},
"is_translatable": false,
"views": {
"count": "1853283",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"note_tweet": {
"is_expandable": true,
"note_tweet_results": {
"result": {
"id": "Tm90ZVR3ZWV0OjE5NzMxNTY4MjgyNTYwMzg5MTI=",
"text": "With over 1,000 entries written over many years, the ADL Glossary of Extremism has served as a source of high-level information on a wide range of topics for years. At the same time, an increasing number of entries in the Glossary were outdated. We also saw a number of entries intentionally misrepresented and misused. Moreover, our experts have continued to develop more comprehensive resources and innovative ways to provide information about antisemitism, extremism and hate.\n\nAt ADL, we always are looking for how we can and should do things better. That's why we are moving to retire the Glossary effectively immediately. This will allow ADL to explore new strategies and creative approaches to deliver our data and present our research more effectively. It will keep us focused on ensuring we do what we do best: fighting antisemitism and hate in the most impactful ways possible.",
"entity_set": {
"hashtags": [],
"symbols": [],
"urls": [],
"user_mentions": []
},
"richtext": {
"richtext_tags": [
{
"from_index": 246,
"to_index": 319,
"richtext_types": [
"Bold"
]
}
]
},
"media": {
"inline_media": []
}
}
}
},
"grok_analysis_button": false,
"legacy": {
"bookmark_count": 318,
"bookmarked": false,
"created_at": "Tue Sep 30 22:43:42 +0000 2025",
"conversation_control": {
"policy": "Community",
"conversation_owner_results": {
"result": {
"__typename": "User",
"legacy": {
"screen_name": "ADL"
}
}
}
},
"conversation_id_str": "1973156828377653752",
"display_text_range": [
0,
277
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/1Wj7hy6sLV",
"expanded_url": "https://x.com/ADL/status/1973156828377653752/photo/1",
"id_str": "1973152381853388800",
"indices": [
278,
301
],
"media_key": "3_1973152381853388800",
"media_url_https": "https://pbs.twimg.com/media/G2ILoxgWUAAHzmz.jpg",
"type": "photo",
"url": "https://t.co/1Wj7hy6sLV",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 900,
"w": 1600,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 900,
"width": 1600,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1600,
"h": 896
},
{
"x": 70,
"y": 0,
"w": 900,
"h": 900
},
{
"x": 126,
"y": 0,
"w": 789,
"h": 900
},
{
"x": 295,
"y": 0,
"w": 450,
"h": 900
},
{
"x": 0,
"y": 0,
"w": 1600,
"h": 900
}
]
},
"media_results": {
"result": {
"media_key": "3_1973152381853388800"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/1Wj7hy6sLV",
"expanded_url": "https://x.com/ADL/status/1973156828377653752/photo/1",
"id_str": "1973152381853388800",
"indices": [
278,
301
],
"media_key": "3_1973152381853388800",
"media_url_https": "https://pbs.twimg.com/media/G2ILoxgWUAAHzmz.jpg",
"type": "photo",
"url": "https://t.co/1Wj7hy6sLV",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 900,
"w": 1600,
"resize": "fit"
},
"medium": {
"h": 675,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 383,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 900,
"width": 1600,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1600,
"h": 896
},
{
"x": 70,
"y": 0,
"w": 900,
"h": 900
},
{
"x": 126,
"y": 0,
"w": 789,
"h": 900
},
{
"x": 295,
"y": 0,
"w": 450,
"h": 900
},
{
"x": 0,
"y": 0,
"w": 1600,
"h": 900
}
]
},
"media_results": {
"result": {
"media_key": "3_1973152381853388800"
}
}
}
]
},
"favorite_count": 367,
"favorited": false,
"full_text": "With over 1,000 entries written over many years, the ADL Glossary of Extremism has served as a source of high-level information on a wide range of topics for years. At the same time, an increasing number of entries in the Glossary were outdated. We also saw a number of entries https://t.co/1Wj7hy6sLV",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 994,
"reply_count": 0,
"retweet_count": 70,
"retweeted": false,
"user_id_str": "19670226",
"id_str": "1973156828377653752"
}
},
"limitedActionResults": {
"limited_actions": [
{
"action": "Reply",
"prompt": {
"__typename": "CtaLimitedActionPrompt",
"cta_type": "SeeConversation",
"headline": {
"text": "Who can reply?",
"entities": []
},
"subtext": {
"text": "People the author mentioned can reply",
"entities": []
}
}
}
]
}
}
},
"legacy": {
"bookmark_count": 26,
"bookmarked": false,
"created_at": "Wed Oct 01 01:54:50 +0000 2025",
"conversation_id_str": "1973204931302793349",
"display_text_range": [
0,
255
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 626,
"favorited": false,
"full_text": "The ADL has done more to advance antisemitism than almost any group in modern history. As the loudest \"Jewish Voice\" in the USA, the ADL spent all their capital peddling vicious hate against Whites, Americans, & Christians.\n\nDisband your organization.",
"is_quote_status": true,
"lang": "en",
"quote_count": 4,
"quoted_status_id_str": "1973156828377653752",
"quoted_status_permalink": {
"url": "https://t.co/35yVdCagje",
"expanded": "https://twitter.com/ADL/status/1973156828377653752",
"display": "x.com/ADL/status/197…"
},
"reply_count": 30,
"retweet_count": 88,
"retweeted": false,
"user_id_str": "1559556660640849921",
"id_str": "1973204931302793349"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177686-tweet-1973293156335755479",
"dispensable": false,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973293156335755479",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973293156335755479"
],
"editable_until_msecs": "1759308325000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "35868",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 8,
"bookmarked": false,
"created_at": "Wed Oct 01 07:45:25 +0000 2025",
"conversation_id_str": "1973204931302793349",
"display_text_range": [
10,
32
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1559556660640849921",
"name": "~~datahazard~~",
"screen_name": "fentasyl",
"indices": [
0,
9
]
}
]
},
"favorite_count": 419,
"favorited": false,
"full_text": "@fentasyl An accurate assessment",
"in_reply_to_screen_name": "fentasyl",
"in_reply_to_status_id_str": "1973204931302793349",
"in_reply_to_user_id_str": "1559556660640849921",
"is_quote_status": false,
"lang": "en",
"quote_count": 5,
"reply_count": 36,
"retweet_count": 43,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973293156335755479"
},
"superFollowsReplyUserResult": {
"result": {
"__typename": "User",
"legacy": {
"screen_name": "fentasyl"
}
}
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
}
],
"metadata": {
"conversationMetadata": {
"allTweetIds": [
"1973204931302793349",
"1973293156335755479"
],
"enableDeduplication": true
}
},
"displayType": "VerticalConversation",
"clientEventInfo": {
"component": "suggest_ranked_organic_tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177687",
"sortIndex": "1973354675688177641",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "profile-conversation-1973354675688177687-tweet-1973059188356981051",
"dispensable": true,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973059188356981051",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMDQwNjI5MDY4MjY0MzY2MDgw",
"rest_id": "1040629068264366080",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Fri Sep 14 15:51:18 +0000 2018",
"default_profile": true,
"default_profile_image": false,
"description": "Christian, Conservative, content creator. https://t.co/guS7EL1Zlq",
"entities": {
"description": {
"urls": [
{
"display_url": "HeckOffCommie.com",
"expanded_url": "http://HeckOffCommie.com",
"url": "https://t.co/guS7EL1Zlq",
"indices": [
42,
65
]
}
]
},
"url": {
"urls": [
{
"display_url": "YouTube.com/JohnDoyle",
"expanded_url": "http://YouTube.com/JohnDoyle",
"url": "https://t.co/OJFcH5d9aG",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 6923,
"followers_count": 75565,
"friends_count": 634,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 209,
"location": "USA",
"media_count": 1444,
"name": "John Doyle",
"normal_followers_count": 75565,
"pinned_tweet_ids_str": [
"1965902293662040269"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1040629068264366080/1585774206",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1050086940190670848/qDoB9Vzv_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "ComradeDoyIe",
"statuses_count": 13240,
"translator_type": "none",
"url": "https://t.co/OJFcH5d9aG",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973059188356981051"
],
"editable_until_msecs": "1759252542000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "192130",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 251,
"bookmarked": false,
"created_at": "Tue Sep 30 16:15:42 +0000 2025",
"conversation_id_str": "1973059188356981051",
"display_text_range": [
0,
113
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 17869,
"favorited": false,
"full_text": "It is very funny that you can effectively purge the military of libtards by simply enforcing obvious PT standards",
"is_quote_status": false,
"lang": "en",
"quote_count": 34,
"reply_count": 144,
"retweet_count": 980,
"retweeted": false,
"user_id_str": "1040629068264366080",
"id_str": "1973059188356981051"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "profile-conversation-1973354675688177687-tweet-1973292824184693220",
"dispensable": false,
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1973292824184693220",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "https://t.co/9qhgzJ69UQ",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "https://www.votetesla.com",
"url": "https://t.co/9qhgzJ69UQ",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 174705,
"followers_count": 226949925,
"friends_count": 1217,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 164433,
"location": "",
"media_count": 4162,
"name": "Elon Musk",
"normal_followers_count": 226949925,
"pinned_tweet_ids_str": [
"1972376013297586551"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 86681,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1679729435447275522",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": false
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1973292824184693220"
],
"editable_until_msecs": "1759308245000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "8716",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"grok_analysis_button": true,
"legacy": {
"bookmark_count": 9,
"bookmarked": false,
"created_at": "Wed Oct 01 07:44:05 +0000 2025",
"conversation_id_str": "1973059188356981051",
"display_text_range": [
14,
16
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1040629068264366080",
"name": "John Doyle",
"screen_name": "ComradeDoyIe",
"indices": [
0,
13
]
}
]
},
"favorite_count": 362,
"favorited": false,
"full_text": "@ComradeDoyIe 🤣💯",
"in_reply_to_screen_name": "ComradeDoyIe",
"in_reply_to_status_id_str": "1973059188356981051",
"in_reply_to_user_id_str": "1040629068264366080",
"is_quote_status": false,
"lang": "qme",
"quote_count": 4,
"reply_count": 36,
"retweet_count": 35,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1973292824184693220"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet"
},
"clientEventInfo": {
"component": "tweet",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
}
],
"metadata": {
"conversationMetadata": {
"allTweetIds": [
"1973059188356981051",
"1973292824184693220"
],
"enableDeduplication": true
}
},
"displayType": "VerticalConversation",
"clientEventInfo": {
"component": "suggest_ranked_organic_tweet",
"details": {
"timelinesDetails": {
"injectionType": "RankedOrganicTweet",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkbVy5r4ZqgAAoACgAAAZmfm4ACAAAAAA=="
}
}
}
}
},
{
"entryId": "promoted-tweet-1963262080548774345-fcd43c586b102ca",
"sortIndex": "1973354675688177640",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1963262080548774345",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjc5MDU5OTg4OTgxOTIzODQw",
"rest_id": "1679059988981923840",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Jul 12 09:28:21 +0000 2023",
"default_profile": true,
"default_profile_image": false,
"description": "Flop Hero exists to make learning PLO enjoyable and accessible for everyone, not just the naturals.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "flophero.com",
"expanded_url": "http://www.flophero.com",
"url": "https://t.co/sPnjjb6HzK",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 20,
"followers_count": 103,
"friends_count": 10,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 21,
"name": "Flop Hero",
"normal_followers_count": 103,
"pinned_tweet_ids_str": [
"1970839363849183549"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1679059988981923840/1746794718",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1920822373688684545/rz2zbJwb_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Flophero_GTO",
"statuses_count": 35,
"translator_type": "none",
"url": "https://t.co/sPnjjb6HzK",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1922626047427707025",
"professional_type": "Business",
"category": [
{
"id": 144,
"name": "Education",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
}
},
"card": {
"rest_id": "card://1963262078267076608",
"legacy": {
"binding_values": [
{
"key": "unified_card",
"value": {
"string_value": "{\"type\":\"image_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"PLO for All\",\"is_rtl\":false},\"subtitle\":{\"content\":\"flophero.com\",\"is_rtl\":false},\"destination\":\"browser_1\"}},\"media_1\":{\"type\":\"media\",\"data\":{\"id\":\"3_1935191411390922752\",\"destination\":\"browser_1\"}}},\"destination_objects\":{\"browser_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://flophero.com?utm_source=x&utm_medium=paid_social&utm_campaign=CF1&utm_content=Swi_Czech_Ger_Aus_Slo\",\"vanity\":\"flophero.com\"}}}},\"components\":[\"media_1\",\"details_1\"],\"media_entities\":{\"3_1935191411390922752\":{\"id\":1935191411390922752,\"id_str\":\"1935191411390922752\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GtsuVehXwAA8jf8.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":116,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":702},{\"x\":20,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_user_id\":1679059988981923840,\"source_user_id_str\":\"1679059988981923840\",\"media_key\":\"3_1935191411390922752\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":27,\"green\":27,\"blue\":27},\"percentage\":65.35},{\"rgb\":{\"red\":251,\"green\":202,\"blue\":1},\"percentage\":14.19},{\"rgb\":{\"red\":63,\"green\":70,\"blue\":22},\"percentage\":7.69},{\"rgb\":{\"red\":196,\"green\":208,\"blue\":208},\"percentage\":3.87},{\"rgb\":{\"red\":130,\"green\":109,\"blue\":15},\"percentage\":2.97}]}},\"ttl\":-1}}}},\"experiment_signals\":{}}",
"type": "STRING"
}
},
{
"key": "card_url",
"value": {
"scribe_key": "card_url",
"string_value": "https://twitter.com",
"type": "STRING"
}
}
],
"card_platform": {
"platform": {
"audience": {
"name": "production"
},
"device": {
"name": "Swift",
"version": "12"
}
}
},
"name": "unified_card",
"url": "card://1963262078267076608",
"user_refs_results": []
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1963262080548774345"
],
"editable_until_msecs": "1756916730000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "142113",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels\" rel=\"nofollow\">advertiser-interface</a>",
"grok_analysis_button": false,
"legacy": {
"bookmark_count": 1,
"bookmarked": false,
"created_at": "Wed Sep 03 15:25:30 +0000 2025",
"conversation_id_str": "1963262080548774345",
"display_text_range": [
0,
51
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 59,
"favorited": false,
"full_text": "Great coaching starts with great data.\n🔥 Try it now",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 11,
"retweet_count": 11,
"retweeted": false,
"scopes": {
"followers": false
},
"user_id_str": "1679059988981923840",
"id_str": "1963262080548774345"
},
"quick_promote_eligibility": {
"eligibility": "IneligibleNotProfessional"
}
}
},
"tweetDisplayType": "Tweet",
"promotedMetadata": {
"advertiser_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjc5MDU5OTg4OTgxOTIzODQw",
"rest_id": "1679059988981923840",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Jul 12 09:28:21 +0000 2023",
"default_profile": true,
"default_profile_image": false,
"description": "Flop Hero exists to make learning PLO enjoyable and accessible for everyone, not just the naturals.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "flophero.com",
"expanded_url": "http://www.flophero.com",
"url": "https://t.co/sPnjjb6HzK",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 20,
"followers_count": 103,
"friends_count": 10,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 21,
"name": "Flop Hero",
"normal_followers_count": 103,
"pinned_tweet_ids_str": [
"1970839363849183549"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1679059988981923840/1746794718",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1920822373688684545/rz2zbJwb_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Flophero_GTO",
"statuses_count": 35,
"translator_type": "none",
"url": "https://t.co/sPnjjb6HzK",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1922626047427707025",
"professional_type": "Business",
"category": [
{
"id": 144,
"name": "Education",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
"adMetadataContainer": {
"renderLegacyWebsiteCard": false
},
"disclosureType": "NoDisclosure",
"experimentValues": [
{
"key": "ads_experiment_ids",
"value": "412345,400002,402022"
},
{
"key": "ads_budget_aware_experiment_id",
"value": "-1"
},
{
"key": "website_card_variation",
"value": "0"
}
],
"impressionId": "fcd43c586b102ca",
"impressionString": "fcd43c586b102ca",
"clickTrackingInfo": {
"urlParams": [
{
"key": "twclid",
"value": "2-1yd56frrxyxrihx86rq4dxiik"
}
]
}
}
}
}
},
{
"entryId": "cursor-top-1973354675688177665",
"sortIndex": "1973354675688177665",
"content": {
"entryType": "TimelineTimelineCursor",
"__typename": "TimelineTimelineCursor",
"value": "DAAHCgABG2LDn0xAJxELAAIAAAATMTk3MzMxODU4NjY0ODM3MTU3MggAAwAAAAEAAA",
"cursorType": "Top"
}
},
{
"entryId": "cursor-bottom-1973354675688177639",
"sortIndex": "1973354675688177639",
"content": {
"entryType": "TimelineTimelineCursor",
"__typename": "TimelineTimelineCursor",
"value": "DAAHCgABG2LDn0w__-cLAAIAAAATMTk3MzI5MjgyNDE4NDY5MzIyMAgAAwAAAAIAAA",
"cursorType": "Bottom"
}
}
]
}
],
"metadata": {
"scribeConfig": {
"page": "profileAll"
}
}
}
}
}
}
}
Media by UserId (temporary 🔧)
Retrieves all media posts (images/videos) from a specific user.
curl --request GET \
--url 'https://<direct.gateway>/user/<userId>/media' \
--header 'X-API-KEY: YOUR_API_KEY'
Parameters
Name | Type | Required | Description |
---|---|---|---|
userId | string | Yes (but you can use username instead in the query) | The unique user ID |
Query Parameters
Name | Type | Required | Description |
---|---|---|---|
count | string | No | Number of tweets to return (Default: 20, Max: 100) |
cursor | string | No | Pagination cursor. Read More |
username | string | No | The username (without @). If this is set, the userId parameter is ignored. You can provide "-1" as the userId then. |
Request Example
GET /user/44196397/media?count=20
Response Example
{
"data": {
"user": {
"result": {
"timeline_v2": {
"timeline": {
"instructions": [
{
"type": "TimelineAddEntries",
"entries": [
{
"entryId": "tweet-1234567890",
"sortIndex": "1234567890",
"content": {
"entryType": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1234567890",
"legacy": {
"created_at": "Wed Oct 01 12:00:00 +0000 2025",
"full_text": "Check out this image!",
"extended_entities": {
"media": [
{
"id_str": "1234567890",
"media_url_https": "https://pbs.twimg.com/media/abc.jpg",
"type": "photo",
"sizes": {
"large": {
"w": 2048,
"h": 1536,
"resize": "fit"
}
}
}
]
},
"favorite_count": 5678,
"retweet_count": 1234
}
}
}
}
}
}
]
}
]
}
}
}
}
},
"cursor-top": "HBaAwKjwrMC4xNT...",
"cursor-bottom": "HBaewLvAvMC4xNT..."
}
User Followers by UserId
Retrieves all followers of a specific user.
curl --request GET \
--url 'https://<direct.gateway>/user/<userId>/followers' \
--header 'X-API-KEY: YOUR_API_KEY'
Parameters
Name | Type | Required | Description |
---|---|---|---|
userId | string | Yes (but you can use username instead in the query) | The unique user****** ******ID |
Query Parameters
Name | Type | Required | Description |
---|---|---|---|
count | string | No | Number of followers to return (Default: 20, Max: 100) |
cursor | string | No | Pagination cursor. Read More |
username | string | No | The username (without @). If this is set, the userId parameter is ignored. You can provide "-1" as the userId then. |
Request Example
GET /user/44196397/followers?count=20
Response Example
{
"user": {
"result": {
"__typename": "User",
"timeline": {
"timeline": {
"instructions": [
{
"type": "TimelineClearCache"
},
{
"type": "TimelineTerminateTimeline",
"direction": "Top"
},
{
"type": "TimelineTerminateTimeline",
"direction": "Bottom"
},
{
"type": "TimelineAddEntries",
"entries": [
{
"entryId": "user-95092020",
"sortIndex": "1973355654303186944",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo5NTA5MjAyMA==",
"rest_id": "95092020",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Sun Dec 06 23:33:02 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "Best-Selling Author | Clinical Psychologist | #1 Education Podcast | Co-founder of @petersonacademy | Order my new book \"We Who Wrestle With God\" here:",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "jordanbpeterson.com/books",
"expanded_url": "http://jordanbpeterson.com/books",
"url": "https://t.co/KgUEvmxeQD",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 227,
"followers_count": 6154053,
"friends_count": 1660,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 14924,
"location": "",
"media_count": 7370,
"name": "Dr Jordan B Peterson",
"normal_followers_count": 6154053,
"pinned_tweet_ids_str": [
"1949912864271323255"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/95092020/1744917990",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1407056014776614923/TKBC60e1_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "jordanbpeterson",
"statuses_count": 51578,
"translator_type": "none",
"url": "https://t.co/KgUEvmxeQD",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1680046132699840514",
"professional_type": "Creator",
"category": [
{
"id": 144,
"name": "Education",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true
},
"super_follow_eligible": true
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-39344374",
"sortIndex": "1973355654303186943",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozOTM0NDM3NA==",
"rest_id": "39344374",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Mon May 11 21:18:33 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "Co-Founder @worldlibertyfi",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "linktr.ee/donaldjtrumpjr",
"expanded_url": "https://linktr.ee/donaldjtrumpjr",
"url": "https://t.co/ni5HwFvEjX",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 38858,
"followers_count": 15509994,
"friends_count": 2296,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 25063,
"location": "Florida, USA",
"media_count": 3408,
"name": "Donald Trump Jr.",
"normal_followers_count": 15509994,
"pinned_tweet_ids_str": [
"1973176815415120331"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/39344374/1674355501",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/766652495858896897/LjrJJB9a_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "DonaldJTrumpJr",
"statuses_count": 51834,
"translator_type": "none",
"url": "https://t.co/ni5HwFvEjX",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-18584875",
"sortIndex": "1973355654303186942",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODU4NDg3NQ==",
"rest_id": "18584875",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Sat Jan 03 19:24:16 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "Merch & Giveaways at: https://t.co/kxb8qjHatu —— PODCAST: @hodgetwinspod",
"entities": {
"description": {
"urls": [
{
"display_url": "officialhodgetwins.com",
"expanded_url": "http://officialhodgetwins.com",
"url": "https://t.co/kxb8qjHatu",
"indices": [
22,
45
]
}
]
},
"url": {
"urls": [
{
"display_url": "officialhodgetwins.com",
"expanded_url": "https://officialhodgetwins.com",
"url": "https://t.co/ybNwIM3IxM",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 14451,
"followers_count": 3437917,
"friends_count": 3593,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 4522,
"location": "United States",
"media_count": 3760,
"name": "Hodgetwins",
"normal_followers_count": 3437917,
"pinned_tweet_ids_str": [
"1966943507895263313"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/18584875/1720914411",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1965633505611972611/NK6yCofq_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "hodgetwins",
"statuses_count": 60211,
"translator_type": "none",
"url": "https://t.co/ybNwIM3IxM",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1487870054645391361",
"professional_type": "Creator",
"category": [
{
"id": 934,
"name": "Social Media Influencer",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "bc1qv0u682l7yxxjm95w0xxmpe2vnwsl8fc9urk5k8",
"ethereum_handle": "0x36a6C64401FEd5A0bc1E4AB63005ade1d5a919F6"
},
"super_follow_eligible": true
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-4914384040",
"sortIndex": "1973355654303186941",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0OTE0Mzg0MDQw",
"rest_id": "4914384040",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Mon Feb 15 16:05:21 +0000 2016",
"default_profile": false,
"default_profile_image": false,
"description": "Fake news you can trust 🐝",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "linktr.ee/babylonbee",
"expanded_url": "https://linktr.ee/babylonbee",
"url": "https://t.co/0PhJZkm4ar",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 1865,
"followers_count": 5039355,
"friends_count": 10,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 8411,
"location": "United States",
"media_count": 16280,
"name": "The Babylon Bee",
"normal_followers_count": 5039355,
"pinned_tweet_ids_str": [
"1966207409493283314"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4914384040/1756492318",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1400100770624720898/-HC7kL5x_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "TheBabylonBee",
"statuses_count": 33456,
"translator_type": "none",
"url": "https://t.co/0PhJZkm4ar",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1649577634316304385",
"professional_type": "Business",
"category": [
{
"id": 580,
"name": "Media & News Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {},
"super_follow_eligible": true
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-18166778",
"sortIndex": "1973355654303186940",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODE2Njc3OA==",
"rest_id": "18166778",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/HouseGOP",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1877085039948668928/f4AibqzY_bigger.jpg"
},
"description": "House Republicans",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Tue Dec 16 17:20:24 +0000 2008",
"default_profile": false,
"default_profile_image": false,
"description": "Proudly serving Ohio's beautiful Fourth District. Chairman @JudiciaryGOP. Fighting to #DoWhatWeSaid",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "linktr.ee/chairmanjimjor…",
"expanded_url": "https://linktr.ee/chairmanjimjordan",
"url": "https://t.co/nCZphybp79",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 5369,
"followers_count": 6541113,
"friends_count": 3650,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 11760,
"location": "Washington, D.C. ",
"media_count": 2117,
"name": "Rep. Jim Jordan",
"normal_followers_count": 6541113,
"pinned_tweet_ids_str": [
"1972811219456192967"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/18166778/1406042839",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/596012379231617025/TtrAXbnA_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Jim_Jordan",
"statuses_count": 16013,
"translator_type": "none",
"url": "https://t.co/nCZphybp79",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-232901331",
"sortIndex": "1973355654303186939",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyMzI5MDEzMzE=",
"rest_id": "232901331",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sat Jan 01 17:50:03 +0000 2011",
"default_profile": false,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "bongino.com",
"expanded_url": "http://www.bongino.com",
"url": "https://t.co/h3Y3otPk07",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 70540,
"followers_count": 7180629,
"friends_count": 2307,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 11456,
"location": "",
"media_count": 1819,
"name": "Dan Bongino",
"normal_followers_count": 7180629,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/232901331/1742295117",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1901949643828625408/cIoDpRVb_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "dbongino",
"statuses_count": 50278,
"translator_type": "none",
"url": "https://t.co/h3Y3otPk07",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-427089628",
"sortIndex": "1973355654303186938",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0MjcwODk2Mjg=",
"rest_id": "427089628",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Sat Dec 03 03:06:19 +0000 2011",
"default_profile": false,
"default_profile_image": false,
"description": "Host of Lex Fridman Podcast.\nInterested in robots and humans.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "youtube.com/lexfridman",
"expanded_url": "https://youtube.com/lexfridman",
"url": "https://t.co/eBRkEqtwUb",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 8132,
"followers_count": 4428986,
"friends_count": 594,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 12475,
"location": "Austin and Boston",
"media_count": 1211,
"name": "Lex Fridman",
"normal_followers_count": 4428986,
"pinned_tweet_ids_str": [
"1973111601470513650"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/427089628/1641354050",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1854713863817646088/nTmsz7jR_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "lexfridman",
"statuses_count": 3918,
"translator_type": "none",
"url": "https://t.co/eBRkEqtwUb",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1201670995435646976",
"sortIndex": "1973355654303186937",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMjAxNjcwOTk1NDM1NjQ2OTc2",
"rest_id": "1201670995435646976",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Tue Dec 03 01:14:36 +0000 2019",
"default_profile": true,
"default_profile_image": false,
"description": "Lauren Boebert for Congress: CO-04 Congresswoman, Mom & Gigi with a fierce love for liberty. Sent to DRAIN THE SWAMP drier than a CO irrigation ditch in July.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "secure.winred.com/lauren-boebert…",
"expanded_url": "https://secure.winred.com/lauren-boebert-for-congress/tw23",
"url": "https://t.co/Fja3lXlS8M",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 9513,
"followers_count": 4873903,
"friends_count": 1877,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 5883,
"location": "Colorado, USA",
"media_count": 1184,
"name": "Lauren Boebert",
"normal_followers_count": 4873903,
"pinned_tweet_ids_str": [
"1769823824030192127"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1201670995435646976/1690219799",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1498803395578236934/vGGuE9-k_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "laurenboebert",
"statuses_count": 10964,
"translator_type": "none",
"url": "https://t.co/Fja3lXlS8M",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1633209344757059584",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-91882544",
"sortIndex": "1973355654303186936",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo5MTg4MjU0NA==",
"rest_id": "91882544",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sun Nov 22 22:32:41 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "Author, Filmmaker, Host of the Dinesh D’Souza Podcast. Follow me on Locals: https://t.co/UDFY7UCJDc",
"entities": {
"description": {
"urls": [
{
"display_url": "dinesh.locals.com",
"expanded_url": "http://dinesh.locals.com",
"url": "https://t.co/UDFY7UCJDc",
"indices": [
76,
99
]
}
]
},
"url": {
"urls": [
{
"display_url": "podcasts.apple.com/us/podcast/the…",
"expanded_url": "https://podcasts.apple.com/us/podcast/the-dinesh-dsouza-podcast/id1547827376",
"url": "https://t.co/hXjh7J5oW9",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 22965,
"followers_count": 5245200,
"friends_count": 9666,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 10258,
"location": "United States",
"media_count": 15858,
"name": "Dinesh D'Souza",
"normal_followers_count": 5245200,
"pinned_tweet_ids_str": [
"1972688510940274729"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/91882544/1757441585",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1969139625995497472/oIr7LrHF_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "DineshDSouza",
"statuses_count": 165709,
"translator_type": "none",
"url": "https://t.co/hXjh7J5oW9",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1797747077482442943",
"professional_type": "Creator",
"category": [
{
"id": 933,
"name": "Media Personality",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": false
}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1344356576786866176",
"sortIndex": "1973355654303186935",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzQ0MzU2NTc2Nzg2ODY2MTc2",
"rest_id": "1344356576786866176",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/HouseGOP",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1877085039948668928/f4AibqzY_bigger.jpg"
},
"description": "House Republicans",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed Dec 30 18:57:01 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "Christian, Mother, American, Business Owner, and Congresswoman representing Georgia’s 14th District |Chairwoman @DOGECommittee | AMERICA ONLY 🇺🇸",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "Greene.House.gov",
"expanded_url": "http://Greene.House.gov",
"url": "https://t.co/4mAJZCMlrr",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 6100,
"followers_count": 5106198,
"friends_count": 751,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 7851,
"location": "Rome, GA",
"media_count": 2883,
"name": "Rep. Marjorie Taylor Greene🇺🇸",
"normal_followers_count": 5106198,
"pinned_tweet_ids_str": [
"1517852261963243521"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1344356576786866176/1661804538",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1867641239685713920/7jTW4Eag_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "RepMTG",
"statuses_count": 9187,
"translator_type": "none",
"url": "https://t.co/4mAJZCMlrr",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1530021716252041226",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-17995040",
"sortIndex": "1973355654303186934",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNzk5NTA0MA==",
"rest_id": "17995040",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Tue Dec 09 16:40:22 +0000 2008",
"default_profile": false,
"default_profile_image": false,
"description": "Daily Wire co-founder, host of @benshapiroshow, #1 NYT bestselling author, America’s #1 ex-rapper. Order my new book, Lions and Scavengers below",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "a.co/d/3AyvDBX",
"expanded_url": "https://a.co/d/3AyvDBX",
"url": "https://t.co/kvSlznhfDe",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 50,
"followers_count": 7958909,
"friends_count": 484,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 18739,
"location": "",
"media_count": 8574,
"name": "Ben Shapiro",
"normal_followers_count": 7958909,
"pinned_tweet_ids_str": [
"1973095987376734655"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/17995040/1731535861",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1791135695567740928/nrRmsfkZ_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "benshapiro",
"statuses_count": 204605,
"translator_type": "none",
"url": "https://t.co/kvSlznhfDe",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-34743251",
"sortIndex": "1973355654303186933",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozNDc0MzI1MQ==",
"rest_id": "34743251",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Thu Apr 23 21:53:30 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "SpaceX designs, manufactures and launches the world’s most advanced rockets and spacecraft",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "spacex.com",
"expanded_url": "http://spacex.com",
"url": "https://t.co/VOJ6qEctND",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 504,
"followers_count": 40108441,
"friends_count": 120,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 43665,
"location": "Earth",
"media_count": 4130,
"name": "SpaceX",
"normal_followers_count": 40108441,
"pinned_tweet_ids_str": [
"1972798064403357887"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/34743251/1681251194",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1697749409851985920/HbrI04tM_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "SpaceX",
"statuses_count": 10696,
"translator_type": "none",
"url": "https://t.co/VOJ6qEctND",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1681839322029502464",
"professional_type": "Business",
"category": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-33608041",
"sortIndex": "1973355654303186932",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozMzYwODA0MQ==",
"rest_id": "33608041",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/ConservativeOG",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1726722240748662784/2BjaL8mX_bigger.jpg"
},
"description": "CONSERVATIVE",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Mon Apr 20 18:21:04 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "Actor, director, producer, author.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "linktr.ee/ksorbs",
"expanded_url": "https://linktr.ee/ksorbs",
"url": "https://t.co/jWZFoCxGsb",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 13808,
"followers_count": 2555993,
"friends_count": 612,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 4193,
"location": "Florida, USA",
"media_count": 2707,
"name": "Kevin Sorbo",
"normal_followers_count": 2555993,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/33608041/1728078199",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1874633227001823232/dYuQ8VPx_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "ksorbs",
"statuses_count": 26237,
"translator_type": "none",
"url": "https://t.co/jWZFoCxGsb",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1491878084949295106",
"professional_type": "Creator",
"category": [
{
"id": 948,
"name": "Actor",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true
},
"super_follow_eligible": true
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1467931973616386052",
"sortIndex": "1973355654303186931",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNDY3OTMxOTczNjE2Mzg2MDUy",
"rest_id": "1467931973616386052",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Mon Dec 06 19:00:41 +0000 2021",
"default_profile": true,
"default_profile_image": false,
"description": "President of the National Association for Gun Rights | Defending your right to keep and bear arms without compromise.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "gunrights.org",
"expanded_url": "https://gunrights.org/",
"url": "https://t.co/b2eg3VCTRL",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3127,
"followers_count": 1598460,
"friends_count": 844,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 1400,
"location": "United States",
"media_count": 461,
"name": "Dudley Brown",
"normal_followers_count": 1598460,
"pinned_tweet_ids_str": [
"1955757097075007726"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1467931973616386052/1753125459",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1957434529859395584/l5GrJPK5_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "GunRightsPrez",
"statuses_count": 4119,
"translator_type": "none",
"url": "https://t.co/b2eg3VCTRL",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1589138162273566720",
"professional_type": "Business",
"category": []
},
"tipjar_settings": {
"is_enabled": true
},
"super_follow_eligible": true
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-18266688",
"sortIndex": "1973355654303186930",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxODI2NjY4OA==",
"rest_id": "18266688",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sat Dec 20 14:32:44 +0000 2008",
"default_profile": false,
"default_profile_image": false,
"description": "President, Judicial Watch. Fact checker. \"Expert\" (These are my personal views only!) NEW BOOK: RIGHTS AND FREEDOMS IN PERIL -- https://t.co/HilDvVzCNg!",
"entities": {
"description": {
"urls": [
{
"display_url": "JUDICIALWATCHBOOK.COM",
"expanded_url": "http://JUDICIALWATCHBOOK.COM",
"url": "https://t.co/HilDvVzCNg",
"indices": [
129,
152
]
}
]
},
"url": {
"urls": [
{
"display_url": "JudicialWatch.org",
"expanded_url": "http://www.JudicialWatch.org",
"url": "https://t.co/KfcU3LJZH5",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 4817,
"followers_count": 3205060,
"friends_count": 4916,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 6616,
"location": "Washington, DC",
"media_count": 10529,
"name": "Tom Fitton",
"normal_followers_count": 3205060,
"pinned_tweet_ids_str": [
"1971609129560182886"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/18266688/1527968436",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/964235516794171392/ktAX5u2i_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "TomFitton",
"statuses_count": 92992,
"translator_type": "regular",
"url": "https://t.co/KfcU3LJZH5",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1461329162304643073",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {},
"super_follow_eligible": true
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-216881337",
"sortIndex": "1973355654303186929",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyMTY4ODEzMzc=",
"rest_id": "216881337",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Wed Nov 17 23:52:35 +0000 2010",
"default_profile": false,
"default_profile_image": false,
"description": "U.S. Senator for Kentucky | I fight for the Constitution, individual liberty and the freedoms that make this country great.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "randpaul.com",
"expanded_url": "http://randpaul.com",
"url": "https://t.co/DUHX2tAy71",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 931,
"followers_count": 6016166,
"friends_count": 807,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 17100,
"location": "Bowling Green, KY",
"media_count": 3800,
"name": "Rand Paul",
"normal_followers_count": 6016166,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/216881337/1628188173",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/681152691461042177/_PrgDgFA_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "RandPaul",
"statuses_count": 19773,
"translator_type": "none",
"url": "https://t.co/DUHX2tAy71",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-23022687",
"sortIndex": "1973355654303186928",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyMzAyMjY4Nw==",
"rest_id": "23022687",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Fri Mar 06 03:20:20 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "Father of two, @heidiscruz's husband, fighter for liberty. Representing the great state of Texas in the U.S. Senate.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "Tedcruz.org",
"expanded_url": "http://Tedcruz.org",
"url": "https://t.co/wsSCJDbFKr",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 1405,
"followers_count": 7098617,
"friends_count": 5391,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 17944,
"location": "Houston, Texas",
"media_count": 8870,
"name": "Ted Cruz",
"normal_followers_count": 7098617,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/23022687/1757610880",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1798342969218510849/JaIsGsam_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "tedcruz",
"statuses_count": 55856,
"translator_type": "none",
"url": "https://t.co/wsSCJDbFKr",
"verified": false,
"verified_type": "Government",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-13298072",
"sortIndex": "1973355654303186927",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzI5ODA3Mg==",
"rest_id": "13298072",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Sun Feb 10 01:12:32 +0000 2008",
"default_profile": false,
"default_profile_image": false,
"description": "Electric vehicles, giant batteries & solar, AI & robotics / https://t.co/WbcKtqUxSs",
"entities": {
"description": {
"urls": [
{
"display_url": "votetesla.com",
"expanded_url": "http://votetesla.com",
"url": "https://t.co/WbcKtqUxSs",
"indices": [
60,
83
]
}
]
},
"url": {
"urls": [
{
"display_url": "tesla.com",
"expanded_url": "https://www.tesla.com",
"url": "https://t.co/EJC6qVEJnC",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 7239,
"followers_count": 24402780,
"friends_count": 74,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 27628,
"location": "",
"media_count": 1872,
"name": "Tesla",
"normal_followers_count": 24402780,
"pinned_tweet_ids_str": [
"1968695220754858305"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/13298072/1740542578",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1337607516008501250/6Ggc4S5n_normal.png",
"profile_interstitial_type": "",
"screen_name": "Tesla",
"statuses_count": 9815,
"translator_type": "none",
"url": "https://t.co/EJC6qVEJnC",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1590468365159636997",
"professional_type": "Business",
"category": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-259001548",
"sortIndex": "1973355654303186926",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyNTkwMDE1NDg=",
"rest_id": "259001548",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Mon Feb 28 23:33:33 +0000 2011",
"default_profile": false,
"default_profile_image": false,
"description": "Co-host @OutnumberedFNC. Fmr. White House Press Secretary. Author of \"Serenity in the Storm.” Harvard Law. Georgetown SFS.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "amazon.com/Serenity-Storm…",
"expanded_url": "https://www.amazon.com/Serenity-Storm-Living-Through-Leaning/dp/1637587295",
"url": "https://t.co/zyoYRFKtfj",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 20114,
"followers_count": 4043349,
"friends_count": 2798,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 7482,
"location": "",
"media_count": 2706,
"name": "Kayleigh McEnany",
"normal_followers_count": 4043349,
"pinned_tweet_ids_str": [
"1971972756939198641"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/259001548/1721443056",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1814490334329479168/5sJTxKr2_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "kayleighmcenany",
"statuses_count": 25920,
"translator_type": "none",
"url": "https://t.co/zyoYRFKtfj",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-20545835",
"sortIndex": "1973355654303186925",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyMDU0NTgzNQ==",
"rest_id": "20545835",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Feb 10 21:04:49 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "Real News for Real People. \n\nWatch NEWSMAX, an independent news network with a conservative perspective, available in 100M+ U.S. homes: https://t.co/rs8XZDalW3 $NMAX",
"entities": {
"description": {
"urls": [
{
"display_url": "nws.mx/tv",
"expanded_url": "http://nws.mx/tv",
"url": "https://t.co/rs8XZDalW3",
"indices": [
136,
159
]
}
]
},
"url": {
"urls": [
{
"display_url": "newsmax.com",
"expanded_url": "http://www.newsmax.com",
"url": "https://t.co/mEKjDDH0HC",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 7632,
"followers_count": 3537704,
"friends_count": 805,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 8224,
"location": "United States",
"media_count": 71287,
"name": "NEWSMAX",
"normal_followers_count": 3537704,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/20545835/1621263045",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1394735604269817857/AXKKo6XT_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "NEWSMAX",
"statuses_count": 245873,
"translator_type": "none",
"url": "https://t.co/mEKjDDH0HC",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1447515653112487939",
"professional_type": "Business",
"category": [
{
"id": 580,
"name": "Media & News Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355185687687168",
"sortIndex": "1973355654303186924",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MTg1Njg3Njg3MTY4",
"rest_id": "1973355185687687168",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:18 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 2,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Danish Butt",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "Dnbutt1",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355425123770368",
"sortIndex": "1973355654303186923",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1NDI1MTIzNzcwMzY4",
"rest_id": "1973355425123770368",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:53:09 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 2,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "hy iyt",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355505742401536/yZTnvPqR_normal.png",
"profile_interstitial_type": "",
"screen_name": "HyIyt71098",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355070541467648",
"sortIndex": "1973355654303186922",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MDcwNTQxNDY3NjQ4",
"rest_id": "1973355070541467648",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:06 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Bassem",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "Bassem452729031",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973354145399611392",
"sortIndex": "1973355654303186921",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU0MTQ1Mzk5NjExMzky",
"rest_id": "1973354145399611392",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:48:33 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 27,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "ascanio038@gmail.com",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973354600309596160/soI6JdB__normal.jpg",
"profile_interstitial_type": "",
"screen_name": "ascanio0384018",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973354688264183808",
"sortIndex": "1973355654303186920",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU0Njg4MjY0MTgzODA4",
"rest_id": "1973354688264183808",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:51:03 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 3,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "周海超",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973354975498526720/WI7IeJFS_normal.png",
"profile_interstitial_type": "",
"screen_name": "zhuhicho226926",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1926670415880982528",
"sortIndex": "1973355654303186919",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTI2NjcwNDE1ODgwOTgyNTI4",
"rest_id": "1926670415880982528",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sun May 25 16:03:23 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 10,
"followers_count": 11,
"friends_count": 3,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Seeker of Freedom",
"normal_followers_count": 11,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "of30054",
"statuses_count": 6,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355296513789952",
"sortIndex": "1973355654303186918",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1Mjk2NTEzNzg5OTUy",
"rest_id": "1973355296513789952",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:35 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 2,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "David Andiseni Banda",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355361672253440/BhwYTtWZ_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "DavidB3714",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355497861554179",
"sortIndex": "1973355654303186917",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1NDk3ODYxNTU0MTc5",
"rest_id": "1973355497861554179",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:53:19 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Tian.",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355546557194240/vYtU03Np_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Tian23473",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355399702257667",
"sortIndex": "1973355654303186916",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1Mzk5NzAyMjU3NjY3",
"rest_id": "1973355399702257667",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:52 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 4,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Maureen",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "Maureen1110654",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973353944173670400",
"sortIndex": "1973355654303186915",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzUzOTQ0MTczNjcwNDAw",
"rest_id": "1973353944173670400",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:47:40 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 32,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Molly Brent",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "MollyBrent2ri9",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1484450300324941827",
"sortIndex": "1973355654303186914",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNDg0NDUwMzAwMzI0OTQxODI3",
"rest_id": "1484450300324941827",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Fri Jan 21 08:58:52 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 32,
"followers_count": 4,
"friends_count": 132,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "monica weyulu",
"normal_followers_count": 4,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1484450411532767233/eUJadFAZ_normal.png",
"profile_interstitial_type": "",
"screen_name": "WeyuluMonica",
"statuses_count": 19,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355503158960129",
"sortIndex": "1973355654303186913",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1NTAzMTU4OTYwMTI5",
"rest_id": "1973355503158960129",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:53:17 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 2,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Samuel",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "Samuel253848915",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355019169603584",
"sortIndex": "1973355654303186912",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MDE5MTY5NjAzNTg0",
"rest_id": "1973355019169603584",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:51:26 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 2,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Ibrahim",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355218998829056/aWCyEqai_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Ibrahim_r999",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973354607066644480",
"sortIndex": "1973355654303186911",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU0NjA3MDY2NjQ0NDgw",
"rest_id": "1973354607066644480",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:50:08 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 2,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "BitcoinAssetStrategy",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355036257185792/2xFS5o-r_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "BitcoinAssetStr",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1927292488403881984",
"sortIndex": "1973355654303186910",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTI3MjkyNDg4NDAzODgxOTg0",
"rest_id": "1927292488403881984",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue May 27 09:15:32 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "This is a medical platform, All about Tesla med bed and bio healing technologies\nTo make enquiry\nEmail 📧: Medbedteam878@gmail.com",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 31,
"followers_count": 3,
"friends_count": 61,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 1,
"name": "Med bed Team",
"normal_followers_count": 3,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1927292488403881984/1748613085",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1927292577545420800/vU6e4Uf2_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "MED_BED0",
"statuses_count": 1,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1928448077381153090",
"professional_type": "Business",
"category": [
{
"id": 584,
"name": "Medical & Health",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973354697709797378",
"sortIndex": "1973355654303186909",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU0Njk3NzA5Nzk3Mzc4",
"rest_id": "1973354697709797378",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:50:14 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 30,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "eason ju",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973354767515566080/yujdvr7X_normal.png",
"profile_interstitial_type": "",
"screen_name": "JuEason32833",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355332798697472",
"sortIndex": "1973355654303186908",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MzMyNzk4Njk3NDcy",
"rest_id": "1973355332798697472",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"protected": true,
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Wed Oct 01 11:52:59 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Kshop",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355461584801792/SfQsTImM_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Kshop389554",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355194990862337",
"sortIndex": "1973355654303186907",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MTk0OTkwODYyMzM3",
"rest_id": "1973355194990862337",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:17 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 0,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Hun Chuan Tan",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355282844753925/0ZEmLnYV_normal.png",
"profile_interstitial_type": "",
"screen_name": "hctan80",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355329741058049",
"sortIndex": "1973355654303186906",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MzI5NzQxMDU4MDQ5",
"rest_id": "1973355329741058049",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"protected": true,
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Wed Oct 01 11:52:51 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 11,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Nowari Lbowari",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355426289692672/LbaqW_Ut_normal.png",
"profile_interstitial_type": "",
"screen_name": "NowariL10625",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355056738021377",
"sortIndex": "1973355654303186905",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MDU2NzM4MDIxMzc3",
"rest_id": "1973355056738021377",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:51:50 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Dev Sharma",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355170336518144/lpl7Ai_x_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "dev_sharma2006",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1413633642979467265",
"sortIndex": "1973355654303186904",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNDEzNjMzNjQyOTc5NDY3MjY1",
"rest_id": "1413633642979467265",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"protected": true,
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Fri Jul 09 22:58:31 +0000 2021",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 8,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "New Taipei City, Taiwan",
"media_count": 0,
"name": "王嘉巘",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": true,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "vHbGByGifOsKrpS",
"statuses_count": 3,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355268428709888",
"sortIndex": "1973355654303186903",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MjY4NDI4NzA5ODg4",
"rest_id": "1973355268428709888",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:18 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 14,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Greta🔞",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355372900450304/qUpI5hJj_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "suit_greta",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973319118716805124",
"sortIndex": "1973355654303186902",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzE5MTE4NzE2ODA1MTI0",
"rest_id": "1973319118716805124",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 09:29:52 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 16,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Elijah Spearing",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "ElijahnSpear",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355143455449097",
"sortIndex": "1973355654303186901",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MTQzNDU1NDQ5MDk3",
"rest_id": "1973355143455449097",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:03 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Lucas Elmers",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355371822755840/TrXid88r_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "LElmers16044",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355329447714816",
"sortIndex": "1973355654303186900",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MzI5NDQ3NzE0ODE2",
"rest_id": "1973355329447714816",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:45 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 0,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Kon",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "KonOutph",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973009976961507328",
"sortIndex": "1973355654303186899",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMDA5OTc2OTYxNTA3MzI4",
"rest_id": "1973009976961507328",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Tue Sep 30 13:00:34 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 1,
"followers_count": 0,
"friends_count": 3,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Samuel Sam",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973010082121097217/-n7K-Iap_normal.png",
"profile_interstitial_type": "",
"screen_name": "SamuelSam161367",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355069442605057",
"sortIndex": "1973355654303186898",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MDY5NDQyNjA1MDU3",
"rest_id": "1973355069442605057",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:15 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 9,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Nora Woods",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355275429224448/kUm9JTXs_normal.png",
"profile_interstitial_type": "",
"screen_name": "NoraWoods67542",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355067911569408",
"sortIndex": "1973355654303186897",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MDY3OTExNTY5NDA4",
"rest_id": "1973355067911569408",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:51:41 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Montia",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355133992943617/ElmdS0_D_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Guruofall01",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355327035777024",
"sortIndex": "1973355654303186896",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MzI3MDM1Nzc3MDI0",
"rest_id": "1973355327035777024",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:39 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 6,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "good 👍",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "good42709713225",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355434762444801",
"sortIndex": "1973355654303186895",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1NDM0NzYyNDQ0ODAx",
"rest_id": "1973355434762444801",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:53:01 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 0,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Sheri",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "Sheri1944854",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1561023025801469952",
"sortIndex": "1973355654303186894",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNTYxMDIzMDI1ODAxNDY5OTUy",
"rest_id": "1561023025801469952",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sat Aug 20 16:12:18 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 4,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Abhi Sharma",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1561023328663797761/qENP2AYO_normal.png",
"profile_interstitial_type": "",
"screen_name": "AbhiSha71188462",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973354883274231808",
"sortIndex": "1973355654303186893",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU0ODgzMjc0MjMxODA4",
"rest_id": "1973354883274231808",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:50:55 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "xiao wang",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355280000790529/hvHMzKRp_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "xiao_wang4453",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355262028517376",
"sortIndex": "1973355654303186892",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MjYyMDI4NTE3Mzc2",
"rest_id": "1973355262028517376",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:36 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "miss sunday",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355364675624963/2GKIOoP7_normal.png",
"profile_interstitial_type": "",
"screen_name": "hotmotmiss",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355417934897152",
"sortIndex": "1973355654303186891",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1NDE3OTM0ODk3MTUy",
"rest_id": "1973355417934897152",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:57 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 4,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Samantha",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "Samanth48986418",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355140506664961",
"sortIndex": "1973355654303186890",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MTQwNTA2NjY0OTYx",
"rest_id": "1973355140506664961",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:51:55 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 4,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Teneise Rogers",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "teneise72769",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355416722743296",
"sortIndex": "1973355654303186889",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1NDE2NzIyNzQzMjk2",
"rest_id": "1973355416722743296",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:56 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 2,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Linda",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "Linda1953080618",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973354616701042688",
"sortIndex": "1973355654303186888",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU0NjE2NzAxMDQyNjg4",
"rest_id": "1973354616701042688",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:49:46 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 3,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Yaseen",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973354967982292992/ieNCif4a_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "imyaseenanwar",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355363748454400",
"sortIndex": "1973355654303186887",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MzYzNzQ4NDU0NDAw",
"rest_id": "1973355363748454400",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:43 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Phoenix",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "Phoenix698152",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355082810007554",
"sortIndex": "1973355654303186886",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MDgyODEwMDA3NTU0",
"rest_id": "1973355082810007554",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"protected": true,
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Wed Oct 01 11:51:54 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 6,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "joshua almayda",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355186673557507/tG5ne1a0_normal.png",
"profile_interstitial_type": "",
"screen_name": "AlmaydaJos66138",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355123708399616",
"sortIndex": "1973355654303186885",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MTIzNzA4Mzk5NjE2",
"rest_id": "1973355123708399616",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:51:58 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 49,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Harrison Lyons",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355268659441664/SP4pVSHn_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "lyons_167",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355216650248192",
"sortIndex": "1973355654303186884",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MjE2NjUwMjQ4MTky",
"rest_id": "1973355216650248192",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:16 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 5,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Nassim Aabbassi",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355281129111552/Tpb1Zo1F_normal.png",
"profile_interstitial_type": "",
"screen_name": "nsb24567",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355395705085956",
"sortIndex": "1973355654303186883",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1Mzk1NzA1MDg1OTU2",
"rest_id": "1973355395705085956",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:51 +0000 2025",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 4,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Mariah",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "Mariah239384875",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355129504923648",
"sortIndex": "1973355654303186882",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MTI5NTA0OTIzNjQ4",
"rest_id": "1973355129504923648",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:51:49 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 2,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Sprobs",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355277404487680/okKizZMh_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Sprobs_",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973354905969500160",
"sortIndex": "1973355654303186881",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU0OTA1OTY5NTAwMTYw",
"rest_id": "1973354905969500160",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"protected": true,
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Wed Oct 01 11:52:02 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Jane Charolette",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355223797129216/YTlwsSsk_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "JCharolett17705",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973349034820501504",
"sortIndex": "1973355654303186880",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzQ5MDM0ODIwNTAxNTA0",
"rest_id": "1973349034820501504",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:10 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 11,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Toochukwu Emmanuel",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355254612672513/1xvjN_8Z_normal.png",
"profile_interstitial_type": "",
"screen_name": "ToochukwuE64692",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1755065357927133184",
"sortIndex": "1973355654303186879",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNzU1MDY1MzU3OTI3MTMzMTg0",
"rest_id": "1755065357927133184",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Feb 07 03:06:41 +0000 2024",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 56,
"followers_count": 0,
"friends_count": 29,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Simplemente Lichy",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1755065357927133184/1720147772",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1809056287855960065/QhU_t42I_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "SilvaEliza74975",
"statuses_count": 35,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1958588064487677954",
"sortIndex": "1973355654303186878",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTU4NTg4MDY0NDg3Njc3OTU0",
"rest_id": "1958588064487677954",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Thu Aug 21 17:52:53 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 124,
"followers_count": 0,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "desativado",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [
"1962768183909097868"
],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1970587321574567936/vbDyp4Ak_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "marif48271",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355134559064064",
"sortIndex": "1973355654303186877",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MTM0NTU5MDY0MDY0",
"rest_id": "1973355134559064064",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:51:47 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 5,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "Toews Kerrie",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355289366654976/oHwE2YzS_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Kerrie_high",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1501112680207163395",
"sortIndex": "1973355654303186876",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNTAxMTEyNjgwMjA3MTYzMzk1",
"rest_id": "1501112680207163395",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Tue Mar 08 08:29:23 +0000 2022",
"default_profile": true,
"default_profile_image": true,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "莊博雅",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
"profile_interstitial_type": "",
"screen_name": "zhuangboya2",
"statuses_count": 2,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "user-1973355128116662272",
"sortIndex": "1973355654303186875",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"__typename": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxOTczMzU1MTI4MTE2NjYyMjcy",
"rest_id": "1973355128116662272",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"parody_commentary_fan_label": "None",
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Oct 01 11:52:45 +0000 2025",
"default_profile": true,
"default_profile_image": false,
"description": "",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 0,
"followers_count": 0,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "",
"media_count": 0,
"name": "قصي شلوف",
"normal_followers_count": 0,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1973355403791478784/hMTOSgQd_normal.png",
"profile_interstitial_type": "",
"screen_name": "QsyShlwf21171",
"statuses_count": 0,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"userDisplayType": "User"
},
"clientEventInfo": {
"component": "FollowersSgs",
"element": "user"
}
}
},
{
"entryId": "cursor-bottom-1973355654303186874",
"sortIndex": "1973355654303186874",
"content": {
"entryType": "TimelineTimelineCursor",
"__typename": "TimelineTimelineCursor",
"value": "1844780295752912247|1973355654303186872",
"cursorType": "Bottom"
}
},
{
"entryId": "cursor-top-1973355654303186945",
"sortIndex": "1973355654303186945",
"content": {
"entryType": "TimelineTimelineCursor",
"__typename": "TimelineTimelineCursor",
"value": "-1|1973355654303186945",
"cursorType": "Top"
}
}
]
}
]
}
}
}
}
}
User Followings by UserId
Retrieves all users that a specific user is following.
curl --request GET \
--url 'https://<direct.gateway>/user/<userId>/following?count=20' \
--header 'X-API-KEY: YOUR_API_KEY'
Parameters
Name | Type | Required | Description |
---|---|---|---|
userId | string | Yes | The unique user ID |
Query Parameters
Name | Type | Required | Description |
---|---|---|---|
count | string | No | Number of results (Default: 20, Max: 100) |
cursor | string | No | Pagination cursor. Read More |
Request Example
GET /user/44196397/following?count=20
Response Example
{
"data": {
"user": {
"result": {
"timeline": {
"timeline": {
"instructions": [
{
"type": "TimelineAddEntries",
"entries": [
{
"entryId": "user-987654321",
"sortIndex": "1234567890",
"content": {
"entryType": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo5ODc2NTQzMjE=",
"rest_id": "987654321",
"is_blue_verified": true,
"legacy": {
"screen_name": "following_user",
"name": "Following User",
"description": "User being followed",
"followers_count": 12345,
"friends_count": 678,
"verified": true,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/987/xyz_normal.jpg"
}
}
}
}
}
}
]
}
]
}
}
}
}
},
"cursor-top": "HBaAwKjwrMC4xNT...",
"cursor-bottom": "HBaewLvAvMC4xNT..."
}
✨ Tweets by Username [EXCLUSIVE]
Retrieves all tweets from a user using their username instead of user ID. This is an exclusive endpoint.
curl --request GET \
--url 'https://<direct.gateway>/user/username/<username>/tweets?count=20' \
--header 'X-API-KEY: YOUR_API_KEY'
Parameters
Name | Type | Required | Description |
---|---|---|---|
username | string | Yes | The username (without @) |
Query Parameters
Name | Type | Required | Description |
---|---|---|---|
count | string | No | Number of tweets (Default: 20, Max: 100) |
cursor | string | No | Pagination cursor. Read More |
includeTimestamp | boolean | No | Include the timestamp in the response |
Request Example
GET /user/username/elonmusk/tweets?count=20
Response Example
{
"data": {
"user": {
"result": {
"timeline_v2": {
"timeline": {
"instructions": [
{
"type": "TimelineAddEntries",
"entries": [
{
"entryId": "tweet-1234567890",
"sortIndex": "1234567890",
"content": {
"entryType": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1234567890",
"legacy": {
"created_at": "Wed Oct 01 12:00:00 +0000 2025",
"full_text": "Tweet by username",
"favorite_count": 12345,
"retweet_count": 6789
}
}
}
}
}
}
]
}
]
}
}
}
}
},
"cursor-top": "HBaAwKjwrMC4xNT...",
"cursor-bottom": "HBaewLvAvMC4xNT..."
}
Verified Followers by UserId or Username
Retrieves only verified followers of a specific user.
curl --request GET \
--url 'https://<direct.gateway>/user/<userId>/verified-followers?count=20' \
--header 'X-API-KEY: YOUR_API_KEY'
Parameters
Name | Type | Required | Description |
---|---|---|---|
userId | string | Yes | The unique user ID or username |
Query Parameters
Name | Type | Required | Description |
---|---|---|---|
count | string | No | Number of results (Default: 20, Max: 100) |
cursor | string | No | Pagination cursor. Read More |
Request Example
GET /user/44196397/verified-followers?count=20
Response Example
{
"data": {
"user": {
"result": {
"timeline": {
"timeline": {
"instructions": [
{
"type": "TimelineAddEntries",
"entries": [
{
"entryId": "user-123456789",
"sortIndex": "1234567890",
"content": {
"entryType": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineUser",
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMjM0NTY3ODk=",
"rest_id": "123456789",
"is_blue_verified": true,
"legacy": {
"screen_name": "verified_user",
"name": "Verified User",
"verified": true,
"verified_type": "Business",
"followers_count": 50000,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/123/verified_normal.jpg"
}
}
}
}
}
}
]
}
]
}
}
}
}
},
"cursor-top": "HBaAwKjwrMC4xNT...",
"cursor-bottom": "HBaewLvAvMC4xNT..."
}
User Following IDs
Retrieves only the user IDs of users that a specific user is following (without full user objects).
curl --request GET \
--url 'https://<direct.gateway>/user/<userId>/following/ids?count=100' \
--header 'X-API-KEY: YOUR_API_KEY'
Parameters
Name | Type | Required | Description |
---|---|---|---|
userId | string | Yes | The unique user ID |
Query Parameters
Name | Type | Required | Description |
---|---|---|---|
count | string | No | Number of IDs (Default: 100, Max: 5000) |
cursor | string | No | Pagination cursor. Read More |
Request Example
GET /user/44196397/following/ids?count=100
Response Example
{
"ids": [
"123456789",
"987654321",
"555666777",
"111222333",
"444555666"
],
"next_cursor": 1234567890,
"next_cursor_str": "1234567890",
"previous_cursor": 0,
"previous_cursor_str": "0"
}
Multiple User Details by IDs
Retrieves detailed information for multiple users in a single request.
curl --request GET \
--url 'https://<direct.gateway>/users/bulk?ids=44196397,123456789,987654321' \
--header 'X-API-KEY: YOUR_API_KEY'
Query Parameters
Name | Type | Required | Description |
---|---|---|---|
ids | string | Yes | Comma-separated list of user IDs (Max: 100 IDs) |
Request Example
GET /users/bulk?ids=44196397,123456789,987654321
Response Example
{
"data": [
{
"user": {
"result": {
"__typename": "User",
"id": "VXNlcjo0NDE5NjM5Nw==",
"rest_id": "44196397",
"legacy": {
"screen_name": "elonmusk",
"name": "Elon Musk",
"description": "Tesla, SpaceX, Neuralink",
"followers_count": 226943745,
"friends_count": 1217,
"verified": false,
"is_blue_verified": true
}
}
}
},
{
"user": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMjM0NTY3ODk=",
"rest_id": "123456789",
"legacy": {
"screen_name": "example_user",
"name": "Example User",
"description": "Just an example",
"followers_count": 12345,
"friends_count": 678,
"verified": false,
"is_blue_verified": false
}
}
}
}
]
}
Rate Limits
- Basic Plan: 100 Requests/hour
- Pro Plan: 1,000 Requests/hour
- Enterprise Plan: 10,000 Requests/hour
Error Codes
Code | Description |
---|---|
400 | Bad Request - Invalid parameters |
401 | Unauthorized - Missing or invalid API Key |
404 | Not Found - User does not exist |
429 | Too Many Requests - Rate limit exceeded |
500 | Internal Server Error |