Skip to content

Instantly share code, notes, and snippets.

@0xdevalias
Last active October 1, 2025 06:31
Show Gist options
  • Select an option

  • Save 0xdevalias/4396d8d56a39b3460dcdfed1cbbdff94 to your computer and use it in GitHub Desktop.

Select an option

Save 0xdevalias/4396d8d56a39b3460dcdfed1cbbdff94 to your computer and use it in GitHub Desktop.
Twitter API reponses / etc

Twitter API Responses / etc

Table of Contents

See Also

My Other Related Deepdive Gist's and Projects

API Responses

Home Timeline

From: https://x.com/home

Request URL: https://x.com/i/api/graphql/Iaj4kAIobIAtigNaYNIOAw/HomeTimeline

Request method: POST

Payload:

{
    "variables":
    {
        "count": 20,
        "includePromotedContent": true,
        "latestControlAvailable": true,
        "requestContext": "launch",
        "withCommunity": true,
        "seenTweetIds":
        [
            "1870598628450205893",
            "1870266067685167119",
            "1870198659821842435"
        ]
    },
    "features":
    {
        "profile_label_improvements_pcf_label_in_post_enabled": false,
        "rweb_tipjar_consumption_enabled": true,
        "responsive_web_graphql_exclude_directive_enabled": true,
        "verified_phone_label_enabled": false,
        "creator_subscriptions_tweet_preview_api_enabled": true,
        "responsive_web_graphql_timeline_navigation_enabled": true,
        "responsive_web_graphql_skip_user_profile_image_extensions_enabled": false,
        "premium_content_api_read_enabled": false,
        "communities_web_enable_tweet_community_results_fetch": true,
        "c9s_tweet_anatomy_moderator_badge_enabled": true,
        "responsive_web_grok_analyze_button_fetch_trends_enabled": true,
        "articles_preview_enabled": true,
        "responsive_web_edit_tweet_api_enabled": true,
        "graphql_is_translatable_rweb_tweet_is_translatable_enabled": true,
        "view_counts_everywhere_api_enabled": true,
        "longform_notetweets_consumption_enabled": true,
        "responsive_web_twitter_article_tweet_consumption_enabled": true,
        "tweet_awards_web_tipping_enabled": false,
        "creator_subscriptions_quote_tweet_preview_enabled": false,
        "freedom_of_speech_not_reach_fetch_enabled": true,
        "standardized_nudges_misinfo": true,
        "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled": true,
        "rweb_video_timestamps_enabled": true,
        "longform_notetweets_rich_text_read_enabled": true,
        "longform_notetweets_inline_media_enabled": true,
        "responsive_web_enhance_cards_enabled": false
    },
    "queryId": "Iaj4kAIobIAtigNaYNIOAw"
}

Response:

Notifications

Response Format Notes

Analysing the response formats with Codex v0.40.0 using gpt-5-codex high and the following prompt:

Can you look at the structure of twitter-response-2-notifications-all.json twitter-response-3-notifications-timeline-first-load.json and twitter-response-4-notifications-timeline-scrolling-update.json and tell me what their general shape is, if they have the same strucutre, etc.

Gave the following response:

Structure Notes

  • All three JSON files share the same top-level shape: an object with globalObjects and timeline.
  • globalObjects always includes tweet and user dictionaries keyed by IDs with the usual Twitter fields (ids, timestamps, engagement counts, entity blobs, profile metadata); only twitter-response-2-notifications-all.json also adds a notifications map whose items expose icon, id, message, template, and timestampMs.
  • timeline.id differs: twitter-response-2-notifications-all.json uses a unique opaque id, while the first-load and scrolling-update captures (twitter-response-3-… and twitter-response-4-…) both report tweet_notifications.
  • timeline.instructions in twitter-response-2-notifications-all.json includes four operations (clearCache, addEntries, clearEntriesUnreadState, and markEntriesUnreadGreaterThanSortIndex with a sortIndex value); the other two files only provide a single addEntries instruction.
  • Every addEntries.entries element carries entryId, sortIndex, and content; cursor entries wrap content.operation.cursor objects, while item entries wrap content.item.content. In the all-notifications file the item content alternates between notification blocks (with id, fromUsers, targetTweets, url) and lightweight tweet references (id, displayType). The first-load and scrolling-update files contain only tweet items, but those tweets include a displaySize alongside id and displayType.
  • Apart from those differences, the two timeline captures (twitter-response-3-… and twitter-response-4-…) have the same structural pattern: top and bottom cursors bracketing a list of tweet items keyed by tweet-<id>, all resolved against the shared globalObjects.tweets and globalObjects.users data.

Notifications

From: https://x.com/notifications

Request method: GET

Request URL: https://x.com/i/api/2/notifications/all.json?include_profile_interstitial_type=1&include_blocking=1&include_blocked_by=1&include_followed_by=1&include_want_retweets=1&include_mute_edge=1&include_can_dm=1&include_can_media_tag=1&include_ext_is_blue_verified=1&include_ext_verified_type=1&include_ext_profile_image_shape=1&skip_status=1&cards_platform=Web-12&include_cards=1&include_ext_alt_text=true&include_ext_limited_action_results=true&include_quote_count=true&include_reply_count=1&tweet_mode=extended&include_ext_views=true&include_entities=true&include_user_entities=true&include_ext_media_color=true&include_ext_media_availability=true&include_ext_sensitive_media_warning=true&include_ext_trusted_friends_metadata=true&send_error_codes=true&simple_quoted_tweet=true&count=20&requestContext=launch&ext=mediaStats%2ChighlightedLabel%2CvoiceInfo%2CbirdwatchPivot%2CsuperFollowMetadata%2CunmentionInfo%2CeditControl%2Carticle

  • Note: The only difference between this main 'Notifications' URL and the 'Notifications Timeline (First Load)' URL is this uses all.json instead of device_follow.json, and includes the extra &requestContext=launch part.

Response:

Notifications Timeline (First Load)

From https://x.com/notifications -> https://x.com/i/timeline (First Load)

Request method: GET

Request URL: https://x.com/i/api/2/notifications/device_follow.json?include_profile_interstitial_type=1&include_blocking=1&include_blocked_by=1&include_followed_by=1&include_want_retweets=1&include_mute_edge=1&include_can_dm=1&include_can_media_tag=1&include_ext_is_blue_verified=1&include_ext_verified_type=1&include_ext_profile_image_shape=1&skip_status=1&cards_platform=Web-12&include_cards=1&include_ext_alt_text=true&include_ext_limited_action_results=true&include_quote_count=true&include_reply_count=1&tweet_mode=extended&include_ext_views=true&include_entities=true&include_user_entities=true&include_ext_media_color=true&include_ext_media_availability=true&include_ext_sensitive_media_warning=true&include_ext_trusted_friends_metadata=true&send_error_codes=true&simple_quoted_tweet=true&count=20&ext=mediaStats%2ChighlightedLabel%2CvoiceInfo%2CbirdwatchPivot%2CsuperFollowMetadata%2CunmentionInfo%2CeditControl%2Carticle

  • Note: The only difference between this 'Notifications Timeline (First Load)' URL and the main 'Notifications' URL is this uses device_follow.json instead of all.json, and doesn't seem to include the &requestContext=launch part.

Response:

Notifications Timeline (Scrolling Update)

From https://x.com/notifications -> https://x.com/i/timeline (Scrolling Update)

Request method: GET

Request URL: https://x.com/i/api/2/notifications/device_follow.json?include_profile_interstitial_type=1&include_blocking=1&include_blocked_by=1&include_followed_by=1&include_want_retweets=1&include_mute_edge=1&include_can_dm=1&include_can_media_tag=1&include_ext_is_blue_verified=1&include_ext_verified_type=1&include_ext_profile_image_shape=1&skip_status=1&cards_platform=Web-12&include_cards=1&include_ext_alt_text=true&include_ext_limited_action_results=true&include_quote_count=true&include_reply_count=1&tweet_mode=extended&include_ext_views=true&include_entities=true&include_user_entities=true&include_ext_media_color=true&include_ext_media_availability=true&include_ext_sensitive_media_warning=true&include_ext_trusted_friends_metadata=true&send_error_codes=true&simple_quoted_tweet=true&cursor=DAABCgABAAABk-sBMpoAAA&count=20&ext=mediaStats%2ChighlightedLabel%2CvoiceInfo%2CbirdwatchPivot%2CsuperFollowMetadata%2CunmentionInfo%2CeditControl%2Carticle

  • Note: The only difference between this 'Scrolling Update' URL and the main 'Notifications Timeline' URL is the &cursor=DAABCgABAAABk-sBMpoAAA part.

Response:

This file has been truncated, but you can view the full file.
{
"data": {
"home": {
"home_timeline_urt": {
"instructions": [
{
"type": "TimelineAddEntries",
"entries": [
{
"entryId": "tweet-1870583560756957325",
"sortIndex": "1870749872412426240",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870583560756957325",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozMzg0NDMwODQ=",
"rest_id": "338443084",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"followed_by": true,
"notifications": true,
"following": true,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Jul 19 15:56:30 +0000 2011",
"default_profile": false,
"default_profile_image": false,
"description": "Lead Engineer at @AIPRMcorp (https://t.co/fepyWfV4kA) and @lrt_co (https://t.co/p7LEvIKduG), building AIPRM for ChatGPT & Claude",
"entities": {
"description": {
"urls": [
{
"display_url": "AIPRM.com",
"expanded_url": "http://AIPRM.com",
"url": "https://t.co/fepyWfV4kA",
"indices": [
29,
52
]
},
{
"display_url": "LinkResearchTools.com",
"expanded_url": "http://LinkResearchTools.com",
"url": "https://t.co/p7LEvIKduG",
"indices": [
67,
90
]
}
]
},
"url": {
"urls": [
{
"display_url": "blaho.me",
"expanded_url": "https://www.blaho.me/",
"url": "https://t.co/7BZ4PQiOup",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 15338,
"followers_count": 15354,
"friends_count": 1608,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 305,
"location": "Vienna, Austria",
"media_count": 1961,
"name": "Tibor Blaho",
"normal_followers_count": 15354,
"pinned_tweet_ids_str": [
"1855884434441969822"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/338443084/1690270841",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1682731537349967873/z5eukaD2_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "btibor91",
"statuses_count": 6752,
"translator_type": "none",
"url": "https://t.co/7BZ4PQiOup",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870583560756957325"
],
"editable_until_msecs": "1734820449000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "5733",
"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": "Tm90ZVR3ZWV0OjE4NzA1ODM1NjA2ODU2NjIyMDg=",
"text": "The standalone Grok web app, built as a Next.js app, will apparently support anonymous access (similar to ChatGPT)\n\n\"Your chats will be deleted after 5 minutes of inactivity. You have X seconds remaining. To permanently save your chats you must sign in.\"\n\nBased on what I found in the client-side resources, it looks like you can share chats, access chat history, and adjust chat preferences, such as disabling search and images or choosing an output mode\n\nPS: og:image and twitter:image references still point to localhost:3000",
"entity_set": {
"hashtags": [],
"symbols": [],
"urls": [],
"user_mentions": []
},
"richtext": {
"richtext_tags": []
},
"media": {
"inline_media": []
}
}
}
},
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1870136965376704614",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozMzg0NDMwODQ=",
"rest_id": "338443084",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"followed_by": true,
"notifications": true,
"following": true,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Jul 19 15:56:30 +0000 2011",
"default_profile": false,
"default_profile_image": false,
"description": "Lead Engineer at @AIPRMcorp (https://t.co/fepyWfV4kA) and @lrt_co (https://t.co/p7LEvIKduG), building AIPRM for ChatGPT & Claude",
"entities": {
"description": {
"urls": [
{
"display_url": "AIPRM.com",
"expanded_url": "http://AIPRM.com",
"url": "https://t.co/fepyWfV4kA",
"indices": [
29,
52
]
},
{
"display_url": "LinkResearchTools.com",
"expanded_url": "http://LinkResearchTools.com",
"url": "https://t.co/p7LEvIKduG",
"indices": [
67,
90
]
}
]
},
"url": {
"urls": [
{
"display_url": "blaho.me",
"expanded_url": "https://www.blaho.me/",
"url": "https://t.co/7BZ4PQiOup",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 15338,
"followers_count": 15354,
"friends_count": 1608,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 305,
"location": "Vienna, Austria",
"media_count": 1961,
"name": "Tibor Blaho",
"normal_followers_count": 15354,
"pinned_tweet_ids_str": [
"1855884434441969822"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/338443084/1690270841",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1682731537349967873/z5eukaD2_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "btibor91",
"statuses_count": 6752,
"translator_type": "none",
"url": "https://t.co/7BZ4PQiOup",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870136965376704614"
],
"editable_until_msecs": "1734713972000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "92826",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://typefully.com/\" rel=\"nofollow\">Typefully</a>",
"legacy": {
"bookmark_count": 31,
"bookmarked": false,
"created_at": "Fri Dec 20 15:59:32 +0000 2024",
"conversation_id_str": "1870136965376704614",
"display_text_range": [
0,
130
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/emsvmZyaf7",
"expanded_url": "https://x.com/btibor91/status/1870136965376704614/photo/1",
"id_str": "1870136956358930434",
"indices": [
131,
154
],
"media_key": "3_1870136956358930434",
"media_url_https": "https://pbs.twimg.com/media/GfQPp0UasAIXt_6.jpg",
"type": "photo",
"url": "https://t.co/emsvmZyaf7",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1683,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 986,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 559,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 3484,
"width": 4240,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 4240,
"h": 2374
},
{
"x": 271,
"y": 0,
"w": 3484,
"h": 3484
},
{
"x": 485,
"y": 0,
"w": 3056,
"h": 3484
},
{
"x": 1142,
"y": 0,
"w": 1742,
"h": 3484
},
{
"x": 0,
"y": 0,
"w": 4240,
"h": 3484
}
]
},
"media_results": {
"result": {
"media_key": "3_1870136956358930434"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/emsvmZyaf7",
"expanded_url": "https://x.com/btibor91/status/1870136965376704614/photo/1",
"id_str": "1870136956358930434",
"indices": [
131,
154
],
"media_key": "3_1870136956358930434",
"media_url_https": "https://pbs.twimg.com/media/GfQPp0UasAIXt_6.jpg",
"type": "photo",
"url": "https://t.co/emsvmZyaf7",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1683,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 986,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 559,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 3484,
"width": 4240,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 4240,
"h": 2374
},
{
"x": 271,
"y": 0,
"w": 3484,
"h": 3484
},
{
"x": 485,
"y": 0,
"w": 3056,
"h": 3484
},
{
"x": 1142,
"y": 0,
"w": 1742,
"h": 3484
},
{
"x": 0,
"y": 0,
"w": 4240,
"h": 3484
}
]
},
"media_results": {
"result": {
"media_key": "3_1870136956358930434"
}
}
}
]
},
"favorite_count": 313,
"favorited": false,
"full_text": "Grok[.]com is possibly coming soon with Grok 2.5 model (grok-2-latest - \"Our most intelligent model\") - thanks for the hint, anon! https://t.co/emsvmZyaf7",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 18,
"reply_count": 18,
"retweet_count": 19,
"retweeted": false,
"user_id_str": "338443084",
"id_str": "1870136965376704614"
}
}
},
"legacy": {
"bookmark_count": 4,
"bookmarked": false,
"created_at": "Sat Dec 21 21:34:09 +0000 2024",
"conversation_id_str": "1870583560756957325",
"display_text_range": [
0,
280
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 59,
"favorited": true,
"full_text": "The standalone Grok web app, built as a Next.js app, will apparently support anonymous access (similar to ChatGPT)\n\n\"Your chats will be deleted after 5 minutes of inactivity. You have X seconds remaining. To permanently save your chats you must sign in.\"\n\nBased on what I found in",
"is_quote_status": true,
"lang": "en",
"quote_count": 0,
"quoted_status_id_str": "1870136965376704614",
"quoted_status_permalink": {
"url": "https://t.co/5xg6rXxCYZ",
"expanded": "https://twitter.com/btibor91/status/1870136965376704614",
"display": "x.com/btibor91/statu…"
},
"reply_count": 7,
"retweet_count": 1,
"retweeted": false,
"user_id_str": "338443084",
"id_str": "1870583560756957325"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"1007405903"
]
},
"clientEventInfo": {
"component": "for_you_in_network",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouInNetwork",
"controllerData": "DAACDAABDAABCgABAIAAQkICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAAAA8ADAMAAAAZAQACQkIAgAAAIAEAAAAAgAIAAAAAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "promoted-tweet-1870137084557832592-36c03ba8e822a2b7",
"sortIndex": "1870749872412426239",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870137084557832592",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMTAzNzc1MzY0NzQzMDI4NzM2",
"rest_id": "1103775364743028736",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Thu Mar 07 21:52:08 +0000 2019",
"default_profile": true,
"default_profile_image": false,
"description": "Whether you're hiking the Andes or exploring the streets of Rome, we have the best travel bags and accessories for any adventure. Always searching for adventure",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "nordace.com",
"expanded_url": "https://nordace.com",
"url": "https://t.co/SePJ1UKXuT",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3,
"followers_count": 42055,
"friends_count": 0,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 336,
"location": "",
"media_count": 859,
"name": "Nordace",
"normal_followers_count": 42055,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1103775364743028736/1569994862",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1103775502391697408/pwfE7uK7_normal.png",
"profile_interstitial_type": "",
"screen_name": "NordaceOfficial",
"statuses_count": 865,
"translator_type": "none",
"url": "https://t.co/SePJ1UKXuT",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1508486057993465859",
"professional_type": "Business",
"category": [
{
"id": 727,
"name": "Shopping & Retail",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
}
},
"card": {
"rest_id": "card://1870101565916491778",
"legacy": {
"binding_values": [
{
"key": "unified_card",
"value": {
"string_value": "{\"type\":\"video_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"\\uD83C\\uDF1F Pack Smarter, Travel Easier\",\"is_rtl\":false},\"subtitle\":{\"content\":\"nordace.com\",\"is_rtl\":false},\"destination\":\"override_browser_with_docked_media_1\"}},\"media_1\":{\"type\":\"media\",\"data\":{\"id\":\"13_1869766837015379968\",\"destination\":\"browser_with_docked_media_1\"}}},\"destination_objects\":{\"browser_with_docked_media_1\":{\"type\":\"browser_with_docked_media\",\"data\":{\"url_data\":{\"url\":\"https://rd.nordace.com/674670a401dde85a676e26df?sub3=mhyt2&sub9=Twitter&sub4=tg7vz&sub5=akxmzh&sub6=Dec.20.Main.EN.EU.Siena.Video.Desktop.Ads.2&sub7=1870101565916491778&sub8=Dec.21.Main.EN.Siena.Video.Desktop.Ads.3\",\"vanity\":\"nordace.com\"},\"media_id\":\"13_1869766837015379968\"}},\"override_browser_with_docked_media_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://rd.nordace.com/674670a401dde85a676e26df?sub3=mhyt2&sub9=Twitter&sub4=tg7vz&sub5=akxmzh&sub6=Dec.20.Main.EN.EU.Siena.Video.Desktop.Ads.2&sub7=1870101565916491778&sub8=Dec.21.Main.EN.Siena.Video.Desktop.Ads.3\",\"vanity\":\"nordace.com\"}}}},\"components\":[\"media_1\",\"details_1\"],\"media_entities\":{\"13_1869766837015379968\":{\"id\":1869766837015379968,\"id_str\":\"1869766837015379968\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/amplify_video_thumb/1869766837015379968/img/2SUzJAf2FnJt6vhC.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"video\",\"original_info\":{\"width\":1080,\"height\":1080},\"sizes\":{\"medium\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"large\":{\"w\":1080,\"h\":1080,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}},\"source_user_id\":1103775364743028736,\"source_user_id_str\":\"1103775364743028736\",\"video_info\":{\"aspect_ratio\":[1,1],\"duration_millis\":17100,\"variants\":[{\"bitrate\":432000,\"content_type\":\"video/mp4\",\"url\":\"https://video.twimg.com/amplify_video/1869766837015379968/vid/avc1/320x320/4Ad3iKJilS4e5Jkz.mp4?tag=14\"},{\"content_type\":\"application/x-mpegURL\",\"url\":\"https://video.twimg.com/amplify_video/1869766837015379968/pl/-2R-2yweJHcEqZr1.m3u8?tag=14\"},{\"bitrate\":832000,\"content_type\":\"video/mp4\",\"url\":\"https://video.twimg.com/amplify_video/1869766837015379968/vid/avc1/540x540/iYWZHKPEPj4POOWb.mp4?tag=14\"},{\"bitrate\":1280000,\"content_type\":\"video/mp4\",\"url\":\"https://video.twimg.com/amplify_video/1869766837015379968/vid/avc1/720x720/QDSXKiqjZ_Qrv388.mp4?tag=14\"}]},\"media_key\":\"13_1869766837015379968\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":198,\"green\":196,\"blue\":199},\"percentage\":74.62},{\"rgb\":{\"red\":139,\"green\":121,\"blue\":119},\"percentage\":15.06},{\"rgb\":{\"red\":135,\"green\":42,\"blue\":63},\"percentage\":4.27},{\"rgb\":{\"red\":38,\"green\":36,\"blue\":45},\"percentage\":2.26},{\"rgb\":{\"red\":146,\"green\":163,\"blue\":185},\"percentage\":1.63}]}},\"ttl\":-1}}}}}",
"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://1870101565916491778",
"user_refs_results": []
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870137084557832592"
],
"editable_until_msecs": "1734714001000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "43638",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels\" rel=\"nofollow\">advertiser-interface</a>",
"legacy": {
"bookmark_count": 1,
"bookmarked": false,
"created_at": "Fri Dec 20 16:00:01 +0000 2024",
"conversation_id_str": "1870137084557832592",
"display_text_range": [
0,
72
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [
{
"display_url": "nordace.link/ka8Z4",
"expanded_url": "https://nordace.link/ka8Z4",
"url": "https://t.co/JLnEOUPAg4",
"indices": [
49,
72
]
}
],
"user_mentions": []
},
"favorite_count": 26,
"favorited": false,
"full_text": "\uD83C\uDF0DSmarter Packing, Smoother Travel with This Bag!\nhttps://t.co/JLnEOUPAg4",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 0,
"reply_count": 2,
"retweet_count": 3,
"retweeted": false,
"scopes": {
"followers": false
},
"user_id_str": "1103775364743028736",
"id_str": "1870137084557832592"
}
}
},
"tweetDisplayType": "Tweet",
"promotedMetadata": {
"advertiser_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMTAzNzc1MzY0NzQzMDI4NzM2",
"rest_id": "1103775364743028736",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Thu Mar 07 21:52:08 +0000 2019",
"default_profile": true,
"default_profile_image": false,
"description": "Whether you're hiking the Andes or exploring the streets of Rome, we have the best travel bags and accessories for any adventure. Always searching for adventure",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "nordace.com",
"expanded_url": "https://nordace.com",
"url": "https://t.co/SePJ1UKXuT",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3,
"followers_count": 42055,
"friends_count": 0,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 336,
"location": "",
"media_count": 859,
"name": "Nordace",
"normal_followers_count": 42055,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1103775364743028736/1569994862",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1103775502391697408/pwfE7uK7_normal.png",
"profile_interstitial_type": "",
"screen_name": "NordaceOfficial",
"statuses_count": 865,
"translator_type": "none",
"url": "https://t.co/SePJ1UKXuT",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1508486057993465859",
"professional_type": "Business",
"category": [
{
"id": 727,
"name": "Shopping & Retail",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
"adMetadataContainer": {
"renderLegacyWebsiteCard": false
},
"disclosureType": "NoDisclosure",
"experimentValues": [
{
"key": "nsfa_htl_experiment_enable",
"value": "10000"
},
{
"key": "nsfa_htl_experimental_threshold_profanity",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_binary",
"value": "1.0"
},
{
"key": "min_gap_for_nsfw_avoidance",
"value": "1"
},
{
"key": "nsfa_htl_experimental_threshold_drugs",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_hate_violence",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_sexual",
"value": "1.0"
}
],
"impressionId": "36c03ba8e822a2b7",
"impressionString": "36c03ba8e822a2b7",
"clickTrackingInfo": {
"urlParams": [
{
"key": "twclid",
"value": "221smb9q3ohxzeffdtp0enw9hy"
}
]
}
}
},
"clientEventInfo": {
"component": "for_you_promoted",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPromoted",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkVibj0EArLIAAAAAA="
}
}
}
}
},
{
"entryId": "tweet-1870568418166153618",
"sortIndex": "1870749872412426238",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870568418166153618",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNTAwODc4NzIxODU0NjI3ODQ2",
"rest_id": "1500878721854627846",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"notifications": true,
"protected": true,
"following": true,
"can_dm": true,
"can_media_tag": false,
"created_at": "Mon Mar 07 16:59:24 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "pk_5cffb498e3900fddc38198d387d1e5e7",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 15959,
"followers_count": 47,
"friends_count": 3,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 6,
"location": "",
"media_count": 2058,
"name": "Michael Skyba",
"normal_followers_count": 47,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1500878721854627846/1734670649",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1869924738044166144/aRTs922T_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "sucralose__",
"statuses_count": 5955,
"translator_type": "none",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870568418166153618"
],
"editable_until_msecs": "1734816839000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "19",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Sat Dec 21 20:33:59 +0000 2024",
"conversation_id_str": "1870568418166153618",
"display_text_range": [
0,
67
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/lG27lDtjdO",
"expanded_url": "https://x.com/sucralose__/status/1870568418166153618/photo/1",
"id_str": "1870568390626086912",
"indices": [
68,
91
],
"media_key": "3_1870568390626086912",
"media_url_https": "https://pbs.twimg.com/media/GfWYCmNXkAAs9-H.png",
"type": "photo",
"url": "https://t.co/lG27lDtjdO",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 605,
"w": 864,
"resize": "fit"
},
"medium": {
"h": 605,
"w": 864,
"resize": "fit"
},
"small": {
"h": 476,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 605,
"width": 864,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 864,
"h": 484
},
{
"x": 0,
"y": 0,
"w": 605,
"h": 605
},
{
"x": 0,
"y": 0,
"w": 531,
"h": 605
},
{
"x": 0,
"y": 0,
"w": 303,
"h": 605
},
{
"x": 0,
"y": 0,
"w": 864,
"h": 605
}
]
},
"media_results": {
"result": {
"media_key": "3_1870568390626086912"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/lG27lDtjdO",
"expanded_url": "https://x.com/sucralose__/status/1870568418166153618/photo/1",
"id_str": "1870568390626086912",
"indices": [
68,
91
],
"media_key": "3_1870568390626086912",
"media_url_https": "https://pbs.twimg.com/media/GfWYCmNXkAAs9-H.png",
"type": "photo",
"url": "https://t.co/lG27lDtjdO",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 605,
"w": 864,
"resize": "fit"
},
"medium": {
"h": 605,
"w": 864,
"resize": "fit"
},
"small": {
"h": 476,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 605,
"width": 864,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 864,
"h": 484
},
{
"x": 0,
"y": 0,
"w": 605,
"h": 605
},
{
"x": 0,
"y": 0,
"w": 531,
"h": 605
},
{
"x": 0,
"y": 0,
"w": 303,
"h": 605
},
{
"x": 0,
"y": 0,
"w": 864,
"h": 605
}
]
},
"media_results": {
"result": {
"media_key": "3_1870568390626086912"
}
}
}
]
},
"favorite_count": 2,
"favorited": false,
"full_text": "New high score\nYour percentile should be either below 1 or above 99 https://t.co/lG27lDtjdO",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 0,
"reply_count": 0,
"retweet_count": 0,
"retweeted": false,
"user_id_str": "1500878721854627846",
"id_str": "1870568418166153618"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"546888043"
]
},
"clientEventInfo": {
"component": "for_you_in_network",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouInNetwork",
"controllerData": "DAACDAABDAABCgABAgAAQkICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAAAg8ADAMAAAAQAQACQkIAAAIAIAEAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "tweet-1870622741029941545",
"sortIndex": "1870749872412426237",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870622741029941545",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozNTcxMzQyMjc=",
"rest_id": "357134227",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed Aug 17 22:14:13 +0000 2011",
"default_profile": true,
"default_profile_image": false,
"description": "23 // Kaggle Competitions Grandmaster & ML/AI Researcher. Building video games @iconicgamesio, machine reasoning @Cambridge_CL, bioscience @ForecomAI.",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 4490,
"followers_count": 7405,
"friends_count": 1008,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 148,
"location": "London",
"media_count": 71,
"name": "Mikel Bober-Irizar",
"normal_followers_count": 7405,
"pinned_tweet_ids_str": [
"1001619591368527872"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/357134227/1675955428",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1721694222213087232/LWqdpBwe_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "mikb0b",
"statuses_count": 1210,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870622741029941545"
],
"editable_until_msecs": "1734829790000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "69239",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 359,
"bookmarked": false,
"created_at": "Sun Dec 22 00:09:50 +0000 2024",
"conversation_id_str": "1870622741029941545",
"display_text_range": [
0,
276
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/adA3bPqwXK",
"expanded_url": "https://x.com/mikb0b/status/1870622741029941545/photo/1",
"ext_alt_text": "12 tasks from the ARC-AGI dataset. Each task consists of a number of 2-D reasoning tasks where you are given a handful of input/output pairs and a test example from which you must guess the final output correctly. In all 12 of these highlighted cases, o3 gets the answer wrong.",
"id_str": "1870597244157661184",
"indices": [
277,
300
],
"media_key": "3_1870597244157661184",
"media_url_https": "https://pbs.twimg.com/media/GfWySF_XkAAn8c9.jpg",
"type": "photo",
"url": "https://t.co/adA3bPqwXK",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1262,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 739,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 419,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1310,
"width": 2126,
"focus_rects": [
{
"x": 0,
"y": 119,
"w": 2126,
"h": 1191
},
{
"x": 816,
"y": 0,
"w": 1310,
"h": 1310
},
{
"x": 977,
"y": 0,
"w": 1149,
"h": 1310
},
{
"x": 1471,
"y": 0,
"w": 655,
"h": 1310
},
{
"x": 0,
"y": 0,
"w": 2126,
"h": 1310
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870597244157661184"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "4398626122",
"name": "OpenAI",
"screen_name": "OpenAI",
"indices": [
87,
94
]
},
{
"id_str": "1773935160192647168",
"name": "ARC Prize",
"screen_name": "arcprize",
"indices": [
130,
139
]
}
]
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/adA3bPqwXK",
"expanded_url": "https://x.com/mikb0b/status/1870622741029941545/photo/1",
"ext_alt_text": "12 tasks from the ARC-AGI dataset. Each task consists of a number of 2-D reasoning tasks where you are given a handful of input/output pairs and a test example from which you must guess the final output correctly. In all 12 of these highlighted cases, o3 gets the answer wrong.",
"id_str": "1870597244157661184",
"indices": [
277,
300
],
"media_key": "3_1870597244157661184",
"media_url_https": "https://pbs.twimg.com/media/GfWySF_XkAAn8c9.jpg",
"type": "photo",
"url": "https://t.co/adA3bPqwXK",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1262,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 739,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 419,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1310,
"width": 2126,
"focus_rects": [
{
"x": 0,
"y": 119,
"w": 2126,
"h": 1191
},
{
"x": 816,
"y": 0,
"w": 1310,
"h": 1310
},
{
"x": 977,
"y": 0,
"w": 1149,
"h": 1310
},
{
"x": 1471,
"y": 0,
"w": 655,
"h": 1310
},
{
"x": 0,
"y": 0,
"w": 2126,
"h": 1310
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870597244157661184"
}
}
}
]
},
"favorite_count": 496,
"favorited": false,
"full_text": "You've seen some of the puzzles o3 failed, but have you seen the attempts?\n\nYesterday, @OpenAI's o3 dramatically beat the SOTA at @arcprize. But there were 34 tasks that even it couldn't solve with 16 hours of thinking.\n\nI've compiled and analyzed all of o3's mistakes below \uD83E\uDDF5 https://t.co/adA3bPqwXK",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 12,
"reply_count": 17,
"retweet_count": 63,
"retweeted": false,
"user_id_str": "357134227",
"id_str": "1870622741029941545"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"958962623"
]
},
"clientEventInfo": {
"component": "for_you_simclusters",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouSimclusters",
"controllerData": "DAACDAABDAABCgABBAAAQkICAAEKAAKAAEAAEAAgAAoACRWJuPQQCssgCAALAAAAAw8ADAMAAAARAQACQkIAAAQAIAAQAEAAgAoKAA7oPNp8HQVJRAoAELdnAt38ZkPVAAAAAA=="
}
}
}
}
},
{
"entryId": "pinned-tweets-1870749872412426244",
"sortIndex": "1870749872412426236",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "pinned-tweets-1870749872412426244-tweet-1870533056521810389",
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870533056521810389",
"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/1683899100922511378/5lY42eHs_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": true,
"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": "The people voted for major government reform",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 103648,
"followers_count": 208529508,
"friends_count": 898,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 155504,
"location": "",
"media_count": 2988,
"name": "Elon Musk",
"normal_followers_count": 208529508,
"pinned_tweet_ids_str": [
"1870533056521810389"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1726163678",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1858316737780781056/kPL61o0F_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "elonmusk",
"statuses_count": 63609,
"translator_type": "none",
"verified": false,
"want_retweets": true,
"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": [
"1870533056521810389"
],
"editable_until_msecs": "1734808408000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "17095866",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1870532350981161266",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzE5Mjg3NzYxMDQ4NzIzNDU4",
"rest_id": "1319287761048723458",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/RoundtableSpace",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1750481240983994368/ijRW1a6Y_bigger.jpg"
},
"description": "Mario Nawfal’s Roundtable",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Thu Oct 22 14:42:25 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "Host of the Largest Show on X | Unfiltered Unbiased 24x7 News | Founder & Investor",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "roundtable.live",
"expanded_url": "https://roundtable.live",
"url": "https://t.co/Lru9VAixI8",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 140865,
"followers_count": 1842291,
"friends_count": 40359,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 7667,
"location": "",
"media_count": 68740,
"name": "Mario Nawfal",
"normal_followers_count": 1842291,
"pinned_tweet_ids_str": [
"1870246322944573582"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1319287761048723458/1687204248",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1670905743619268609/pYItlWat_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "MarioNawfal",
"statuses_count": 94972,
"translator_type": "none",
"url": "https://t.co/Lru9VAixI8",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1480816032101064705",
"professional_type": "Business",
"category": [
{
"id": 199,
"name": "Investment Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870532350981161266"
],
"editable_until_msecs": "1734808239000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "16821245",
"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": "Tm90ZVR3ZWV0OjE4NzA1MzIzNTA5MDE0NjA5OTI=",
"text": "\uD83D\uDEA8 JOE ROGAN: X: IS THE WORLD’S MOST TRUSTED NEWS SOURCE BECAUSE IT ISN’T MESSED WITH\n\n“X is the number one news source on earth.\n\nIt’s the most trusted because it’s the only one that’s not f***ed with.\n\nSo even if someone is incorrect, the community notes will correct them.”\n\nSource:@JoeRogan, @AutismCapital",
"entity_set": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "18208354",
"name": "Joe Rogan",
"screen_name": "JoeRogan",
"indices": [
284,
293
]
},
{
"id_str": "1297651178256257024",
"name": "Autism Capital \uD83E\uDDE9",
"screen_name": "AutismCapital",
"indices": [
295,
309
]
}
]
},
"richtext": {
"richtext_tags": []
},
"media": {
"inline_media": []
}
}
}
},
"legacy": {
"bookmark_count": 384,
"bookmarked": false,
"created_at": "Sat Dec 21 18:10:39 +0000 2024",
"conversation_id_str": "1870532350981161266",
"display_text_range": [
0,
275
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/PU0HUeULif",
"expanded_url": "https://x.com/MarioNawfal/status/1870532350981161266/video/1",
"id_str": "1870532304608636928",
"indices": [
276,
299
],
"media_key": "7_1870532304608636928",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1870532304608636928/pu/img/ZpJxTMek0EX4OWvX.jpg",
"type": "video",
"url": "https://t.co/PU0HUeULif",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 478,
"w": 886,
"resize": "fit"
},
"medium": {
"h": 478,
"w": 886,
"resize": "fit"
},
"small": {
"h": 367,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 478,
"width": 886,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
443,
239
],
"duration_millis": 57701,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/1870532304608636928/pu/pl/-kva9D1hdjq13kiE.m3u8?tag=12&v=40f"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870532304608636928/pu/vid/avc1/500x270/yUglfhGQI2dDR5Nu.mp4?tag=12"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870532304608636928/pu/vid/avc1/886x478/ExbMckiY0qHDZIQ_.mp4?tag=12"
}
]
},
"media_results": {
"result": {
"media_key": "7_1870532304608636928"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/PU0HUeULif",
"expanded_url": "https://x.com/MarioNawfal/status/1870532350981161266/video/1",
"id_str": "1870532304608636928",
"indices": [
276,
299
],
"media_key": "7_1870532304608636928",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1870532304608636928/pu/img/ZpJxTMek0EX4OWvX.jpg",
"type": "video",
"url": "https://t.co/PU0HUeULif",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 478,
"w": 886,
"resize": "fit"
},
"medium": {
"h": 478,
"w": 886,
"resize": "fit"
},
"small": {
"h": 367,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 478,
"width": 886,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
443,
239
],
"duration_millis": 57701,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/1870532304608636928/pu/pl/-kva9D1hdjq13kiE.m3u8?tag=12&v=40f"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870532304608636928/pu/vid/avc1/500x270/yUglfhGQI2dDR5Nu.mp4?tag=12"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870532304608636928/pu/vid/avc1/886x478/ExbMckiY0qHDZIQ_.mp4?tag=12"
}
]
},
"media_results": {
"result": {
"media_key": "7_1870532304608636928"
}
}
}
]
},
"favorite_count": 7867,
"favorited": false,
"full_text": "\uD83D\uDEA8 JOE ROGAN: X: IS THE WORLD’S MOST TRUSTED NEWS SOURCE BECAUSE IT ISN’T MESSED WITH\n\n“X is the number one news source on earth.\n\nIt’s the most trusted because it’s the only one that’s not f***ed with.\n\nSo even if someone is incorrect, the community notes will correct them.” https://t.co/PU0HUeULif",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 138,
"reply_count": 667,
"retweet_count": 1448,
"retweeted": false,
"user_id_str": "1319287761048723458",
"id_str": "1870532350981161266"
}
}
},
"legacy": {
"bookmark_count": 1427,
"bookmarked": false,
"created_at": "Sat Dec 21 18:13:28 +0000 2024",
"conversation_id_str": "1870533056521810389",
"display_text_range": [
0,
59
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 72573,
"favorited": false,
"full_text": "Joe Rogan says \uD835\uDD4F is the most trusted source of news!\n\nTrue.",
"is_quote_status": true,
"lang": "en",
"quote_count": 686,
"quoted_status_id_str": "1870532350981161266",
"quoted_status_permalink": {
"url": "https://t.co/q0DPmHwOlv",
"expanded": "https://twitter.com/marionawfal/status/1870532350981161266",
"display": "x.com/marionawfal/st…"
},
"reply_count": 12075,
"retweet_count": 11868,
"retweeted": false,
"user_id_str": "44196397",
"id_str": "1870533056521810389"
}
}
},
"tweetDisplayType": "CondensedTweet"
},
"feedbackInfo": {
"feedbackKeys": [
"1980092503"
]
},
"clientEventInfo": {
"component": "for_you_pinned",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPinned",
"controllerData": "DAACDAABDAABCgABCAAAAlICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAABA8ADAMAAAAZAQACUgIAAAgAIAEAAAAAgAAAAAAAAAAAgAoADug82nwdBUlEAAAAAA=="
}
}
}
}
},
{
"entryId": "pinned-tweets-1870749872412426244-tweet-1870351352087666844",
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870351352087666844",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo1OTQzNjIy",
"rest_id": "5943622",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/a16z",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1527308966614933505/N61sd5P3_bigger.jpg"
},
"description": "a16z",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": true,
"can_dm": true,
"can_media_tag": false,
"created_at": "Thu May 10 23:39:54 +0000 2007",
"default_profile": false,
"default_profile_image": false,
"description": "It's time to build.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "pmarca.substack.com",
"expanded_url": "https://pmarca.substack.com/",
"url": "https://t.co/N9TC8pD0gW",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 277864,
"followers_count": 1706083,
"friends_count": 25333,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 18892,
"location": "Menlo Park, CA",
"media_count": 2158,
"name": "Marc Andreessen \uD83C\uDDFA\uD83C\uDDF8",
"normal_followers_count": 1706083,
"pinned_tweet_ids_str": [
"1870351352087666844"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/5943622/1720925237",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1820716712234303489/9GpKDZjq_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "pmarca",
"statuses_count": 11056,
"translator_type": "none",
"url": "https://t.co/N9TC8pD0gW",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1603640444239257600",
"professional_type": "Business",
"category": [
{
"id": 958,
"name": "Entrepreneur",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870351352087666844"
],
"editable_until_msecs": "1734765086000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "672828",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 1213,
"bookmarked": false,
"created_at": "Sat Dec 21 06:11:26 +0000 2024",
"conversation_id_str": "1870351352087666844",
"display_text_range": [
0,
221
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 13993,
"favorited": false,
"full_text": "Overheard in Silicon Valley: \"My biggest lesson from the last year is just, it’s all going to happen. All my childhood dreams of space colonies and brain interfaces and AI and robots. Everything is just… going to happen.\"",
"is_quote_status": false,
"lang": "en",
"quote_count": 231,
"reply_count": 537,
"retweet_count": 1282,
"retweeted": false,
"user_id_str": "5943622",
"id_str": "1870351352087666844"
}
}
},
"tweetDisplayType": "CondensedTweet"
},
"feedbackInfo": {
"feedbackKeys": [
"24596592"
]
},
"clientEventInfo": {
"component": "for_you_pinned",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPinned",
"controllerData": "DAACDAABDAABCgABCAAAAlICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAABA8ADAMAAAAZAQACUgIAAAgAIAEAAAAAgAAAAAAAAAAAgAoADug82nwdBUlEAAAAAA=="
}
}
}
}
},
{
"entryId": "pinned-tweets-1870749872412426244-tweet-1869474875129372884",
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "TweetWithVisibilityResults",
"tweet": {
"rest_id": "1869474875129372884",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzk5NzY2MTUzMDUzMDYxMTIx",
"rest_id": "1399766153053061121",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"notifications": true,
"following": true,
"can_dm": true,
"can_media_tag": false,
"created_at": "Tue Jun 01 16:34:27 +0000 2021",
"default_profile": true,
"default_profile_image": false,
"description": "Subscribe for the best X experience: ad-free, post edits, content monetization, Grok AI with higher limits, video downloads, long posts, X Pro, and more.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "x.com/i/premium_sign…",
"expanded_url": "https://x.com/i/premium_sign_up",
"url": "https://t.co/zJi0ZdXW63",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 639,
"followers_count": 1017826,
"friends_count": 2,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 1695,
"location": "",
"media_count": 63,
"name": "Premium",
"normal_followers_count": 1017826,
"pinned_tweet_ids_str": [
"1869474875129372884"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1399766153053061121/1690180776",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1683366300054069248/67v23AEj_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "premium",
"statuses_count": 1268,
"translator_type": "none",
"url": "https://t.co/zJi0ZdXW63",
"verified": false,
"verified_type": "Business",
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1869474875129372884"
],
"editable_until_msecs": "1734556118000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "202933",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 35,
"bookmarked": false,
"created_at": "Wed Dec 18 20:08:38 +0000 2024",
"conversation_control": {
"policy": "Verified",
"conversation_owner_results": {
"result": {
"__typename": "User",
"legacy": {
"screen_name": "premium"
}
}
}
},
"conversation_id_str": "1869474875129372884",
"display_text_range": [
0,
98
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/duuNKGSaRu",
"expanded_url": "https://x.com/premium/status/1869474875129372884/video/1",
"id_str": "1869474569482113024",
"indices": [
99,
122
],
"media_key": "7_1869474569482113024",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1869474569482113024/pu/img/6-4j1nMKri21jBZh.jpg",
"type": "video",
"url": "https://t.co/duuNKGSaRu",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 2048,
"w": 2048,
"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": 2160,
"width": 2160,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
1,
1
],
"duration_millis": 11333,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/1869474569482113024/pu/pl/wCC2r8r1CJaJRnZR.m3u8?tag=14"
},
{
"bitrate": 432000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1869474569482113024/pu/vid/avc1/320x320/tmz7mXwOZMa6Fdtu.mp4?tag=14"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1869474569482113024/pu/vid/avc1/540x540/pWV-a3uhL3RIQpJf.mp4?tag=14"
},
{
"bitrate": 1280000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1869474569482113024/pu/vid/avc1/720x720/xEz0jWv5DmU90NDU.mp4?tag=14"
},
{
"bitrate": 8768000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1869474569482113024/pu/vid/avc1/1080x1080/SbdSGI8bAWtGOcxD.mp4?tag=14"
}
]
},
"media_results": {
"result": {
"media_key": "7_1869474569482113024"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/duuNKGSaRu",
"expanded_url": "https://x.com/premium/status/1869474875129372884/video/1",
"id_str": "1869474569482113024",
"indices": [
99,
122
],
"media_key": "7_1869474569482113024",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1869474569482113024/pu/img/6-4j1nMKri21jBZh.jpg",
"type": "video",
"url": "https://t.co/duuNKGSaRu",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 2048,
"w": 2048,
"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": 2160,
"width": 2160,
"focus_rects": []
},
"video_info": {
"aspect_ratio": [
1,
1
],
"duration_millis": 11333,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/1869474569482113024/pu/pl/wCC2r8r1CJaJRnZR.m3u8?tag=14"
},
{
"bitrate": 432000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1869474569482113024/pu/vid/avc1/320x320/tmz7mXwOZMa6Fdtu.mp4?tag=14"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1869474569482113024/pu/vid/avc1/540x540/pWV-a3uhL3RIQpJf.mp4?tag=14"
},
{
"bitrate": 1280000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1869474569482113024/pu/vid/avc1/720x720/xEz0jWv5DmU90NDU.mp4?tag=14"
},
{
"bitrate": 8768000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1869474569482113024/pu/vid/avc1/1080x1080/SbdSGI8bAWtGOcxD.mp4?tag=14"
}
]
},
"media_results": {
"result": {
"media_key": "7_1869474569482113024"
}
}
}
]
},
"favorite_count": 1019,
"favorited": false,
"full_text": "Get festive with holiday icons!\n\nUpdate your app and choose your favorite icon now in Premium Hub. https://t.co/duuNKGSaRu",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 22,
"reply_count": 140,
"retweet_count": 67,
"retweeted": false,
"user_id_str": "1399766153053061121",
"id_str": "1869474875129372884"
}
},
"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": []
}
}
}
]
}
}
},
"tweetDisplayType": "CondensedTweet"
},
"feedbackInfo": {
"feedbackKeys": [
"1417680466"
]
},
"clientEventInfo": {
"component": "for_you_pinned",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPinned",
"controllerData": "DAACDAABDAABCgABCAAAAlICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAABA8ADAMAAAAZAQACUgIAAAgAIAEAAAAAgAAAAAAAAAAAgAoADug82nwdBUlEAAAAAA=="
}
}
}
}
},
{
"entryId": "pinned-tweets-1870749872412426244-tweet-1870169402248945822",
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870169402248945822",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzE0Njg2MDQy",
"rest_id": "1314686042",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/TheRundownAI",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1672707817197965312/zsxkJv_T_bigger.jpg"
},
"description": "The Rundown AI",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": true,
"can_dm": true,
"can_media_tag": true,
"created_at": "Fri Mar 29 18:03:03 +0000 2013",
"default_profile": false,
"default_profile_image": false,
"description": "Founder of the world’s most read daily AI newsletter @therundownai. Sharing the latest developments in the world of artificial intelligence.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "rundown.ai",
"expanded_url": "http://rundown.ai",
"url": "https://t.co/TDuFGgFYaq",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 20344,
"followers_count": 531781,
"friends_count": 502,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 10045,
"location": "Join 750,000+ Readers →",
"media_count": 3351,
"name": "Rowan Cheung",
"normal_followers_count": 531781,
"pinned_tweet_ids_str": [
"1815763595197616155"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1314686042/1672275988",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1711152452735774720/Cotttl-n_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "rowancheung",
"statuses_count": 10969,
"translator_type": "none",
"url": "https://t.co/TDuFGgFYaq",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1609712179959459844",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870169402248945822"
],
"editable_until_msecs": "1734721706000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "789594",
"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": "Tm90ZVR3ZWV0OjE4NzAxNjk0MDIxNTI0ODA3Njg=",
"text": "NEW: OpenAI just announced 'o3', a breakthrough AI model that significantly surpasses all previous models in benchmarks.\n\n—On ARC-AGI: o3 more than triples o1’s score on low compute and surpasses a score of 87%\n—On EpochAI’s Frontier Math: o3 set a new record, solving 25.2% of problems, where no other model exceeds 2%\n—On SWE-Bench Verified: o3 outperforms o1 by 22.8 percentage points\n—On Codeforces: o3 achieved a rating of 2727, surpassing OpenAI’s Chief Scientist’s score of 2665\n—On AIME 2024: o3 scored 96.7%, missing only one question\n—On GPQA Diamond: o3 achieved 87.7%, well above human expert performance",
"entity_set": {
"hashtags": [],
"symbols": [],
"urls": [],
"user_mentions": []
},
"richtext": {
"richtext_tags": []
},
"media": {
"inline_media": []
}
}
}
},
"legacy": {
"bookmark_count": 1170,
"bookmarked": false,
"created_at": "Fri Dec 20 18:08:26 +0000 2024",
"conversation_id_str": "1870169402248945822",
"display_text_range": [
0,
277
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/mELIIFHLe5",
"expanded_url": "https://x.com/rowancheung/status/1870169402248945822/photo/1",
"id_str": "1870167862511357953",
"indices": [
278,
301
],
"media_key": "3_1870167862511357953",
"media_url_https": "https://pbs.twimg.com/media/GfQrwytXUAENEfk.jpg",
"type": "photo",
"url": "https://t.co/mELIIFHLe5",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 886,
"w": 1644,
"resize": "fit"
},
"medium": {
"h": 647,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 366,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 886,
"width": 1644,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1582,
"h": 886
},
{
"x": 0,
"y": 0,
"w": 886,
"h": 886
},
{
"x": 0,
"y": 0,
"w": 777,
"h": 886
},
{
"x": 66,
"y": 0,
"w": 443,
"h": 886
},
{
"x": 0,
"y": 0,
"w": 1644,
"h": 886
}
]
},
"media_results": {
"result": {
"media_key": "3_1870167862511357953"
}
}
},
{
"display_url": "pic.x.com/mELIIFHLe5",
"expanded_url": "https://x.com/rowancheung/status/1870169402248945822/photo/1",
"id_str": "1870168132632858625",
"indices": [
278,
301
],
"media_key": "3_1870168132632858625",
"media_url_https": "https://pbs.twimg.com/media/GfQsAg_WUAERy47.jpg",
"type": "photo",
"url": "https://t.co/mELIIFHLe5",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 922,
"w": 1662,
"resize": "fit"
},
"medium": {
"h": 666,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 377,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 922,
"width": 1662,
"focus_rects": [
{
"x": 16,
"y": 0,
"w": 1646,
"h": 922
},
{
"x": 657,
"y": 0,
"w": 922,
"h": 922
},
{
"x": 714,
"y": 0,
"w": 809,
"h": 922
},
{
"x": 888,
"y": 0,
"w": 461,
"h": 922
},
{
"x": 0,
"y": 0,
"w": 1662,
"h": 922
}
]
},
"media_results": {
"result": {
"media_key": "3_1870168132632858625"
}
}
},
{
"display_url": "pic.x.com/mELIIFHLe5",
"expanded_url": "https://x.com/rowancheung/status/1870169402248945822/photo/1",
"id_str": "1870168270898069504",
"indices": [
278,
301
],
"media_key": "3_1870168270898069504",
"media_url_https": "https://pbs.twimg.com/media/GfQsIkEWAAAby-8.jpg",
"type": "photo",
"url": "https://t.co/mELIIFHLe5",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 922,
"w": 1692,
"resize": "fit"
},
"medium": {
"h": 654,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 371,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 922,
"width": 1692,
"focus_rects": [
{
"x": 46,
"y": 0,
"w": 1646,
"h": 922
},
{
"x": 681,
"y": 0,
"w": 922,
"h": 922
},
{
"x": 738,
"y": 0,
"w": 809,
"h": 922
},
{
"x": 912,
"y": 0,
"w": 461,
"h": 922
},
{
"x": 0,
"y": 0,
"w": 1692,
"h": 922
}
]
},
"media_results": {
"result": {
"media_key": "3_1870168270898069504"
}
}
},
{
"display_url": "pic.x.com/mELIIFHLe5",
"expanded_url": "https://x.com/rowancheung/status/1870169402248945822/photo/1",
"id_str": "1870168451735601152",
"indices": [
278,
301
],
"media_key": "3_1870168451735601152",
"media_url_https": "https://pbs.twimg.com/media/GfQsTFvXwAAjaq_.jpg",
"type": "photo",
"url": "https://t.co/mELIIFHLe5",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 898,
"w": 1002,
"resize": "fit"
},
"medium": {
"h": 898,
"w": 1002,
"resize": "fit"
},
"small": {
"h": 609,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 898,
"width": 1002,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1002,
"h": 561
},
{
"x": 26,
"y": 0,
"w": 898,
"h": 898
},
{
"x": 81,
"y": 0,
"w": 788,
"h": 898
},
{
"x": 251,
"y": 0,
"w": 449,
"h": 898
},
{
"x": 0,
"y": 0,
"w": 1002,
"h": 898
}
]
},
"media_results": {
"result": {
"media_key": "3_1870168451735601152"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/mELIIFHLe5",
"expanded_url": "https://x.com/rowancheung/status/1870169402248945822/photo/1",
"id_str": "1870167862511357953",
"indices": [
278,
301
],
"media_key": "3_1870167862511357953",
"media_url_https": "https://pbs.twimg.com/media/GfQrwytXUAENEfk.jpg",
"type": "photo",
"url": "https://t.co/mELIIFHLe5",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 886,
"w": 1644,
"resize": "fit"
},
"medium": {
"h": 647,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 366,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 886,
"width": 1644,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1582,
"h": 886
},
{
"x": 0,
"y": 0,
"w": 886,
"h": 886
},
{
"x": 0,
"y": 0,
"w": 777,
"h": 886
},
{
"x": 66,
"y": 0,
"w": 443,
"h": 886
},
{
"x": 0,
"y": 0,
"w": 1644,
"h": 886
}
]
},
"media_results": {
"result": {
"media_key": "3_1870167862511357953"
}
}
},
{
"display_url": "pic.x.com/mELIIFHLe5",
"expanded_url": "https://x.com/rowancheung/status/1870169402248945822/photo/1",
"id_str": "1870168132632858625",
"indices": [
278,
301
],
"media_key": "3_1870168132632858625",
"media_url_https": "https://pbs.twimg.com/media/GfQsAg_WUAERy47.jpg",
"type": "photo",
"url": "https://t.co/mELIIFHLe5",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 922,
"w": 1662,
"resize": "fit"
},
"medium": {
"h": 666,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 377,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 922,
"width": 1662,
"focus_rects": [
{
"x": 16,
"y": 0,
"w": 1646,
"h": 922
},
{
"x": 657,
"y": 0,
"w": 922,
"h": 922
},
{
"x": 714,
"y": 0,
"w": 809,
"h": 922
},
{
"x": 888,
"y": 0,
"w": 461,
"h": 922
},
{
"x": 0,
"y": 0,
"w": 1662,
"h": 922
}
]
},
"media_results": {
"result": {
"media_key": "3_1870168132632858625"
}
}
},
{
"display_url": "pic.x.com/mELIIFHLe5",
"expanded_url": "https://x.com/rowancheung/status/1870169402248945822/photo/1",
"id_str": "1870168270898069504",
"indices": [
278,
301
],
"media_key": "3_1870168270898069504",
"media_url_https": "https://pbs.twimg.com/media/GfQsIkEWAAAby-8.jpg",
"type": "photo",
"url": "https://t.co/mELIIFHLe5",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 922,
"w": 1692,
"resize": "fit"
},
"medium": {
"h": 654,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 371,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 922,
"width": 1692,
"focus_rects": [
{
"x": 46,
"y": 0,
"w": 1646,
"h": 922
},
{
"x": 681,
"y": 0,
"w": 922,
"h": 922
},
{
"x": 738,
"y": 0,
"w": 809,
"h": 922
},
{
"x": 912,
"y": 0,
"w": 461,
"h": 922
},
{
"x": 0,
"y": 0,
"w": 1692,
"h": 922
}
]
},
"media_results": {
"result": {
"media_key": "3_1870168270898069504"
}
}
},
{
"display_url": "pic.x.com/mELIIFHLe5",
"expanded_url": "https://x.com/rowancheung/status/1870169402248945822/photo/1",
"id_str": "1870168451735601152",
"indices": [
278,
301
],
"media_key": "3_1870168451735601152",
"media_url_https": "https://pbs.twimg.com/media/GfQsTFvXwAAjaq_.jpg",
"type": "photo",
"url": "https://t.co/mELIIFHLe5",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 898,
"w": 1002,
"resize": "fit"
},
"medium": {
"h": 898,
"w": 1002,
"resize": "fit"
},
"small": {
"h": 609,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 898,
"width": 1002,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1002,
"h": 561
},
{
"x": 26,
"y": 0,
"w": 898,
"h": 898
},
{
"x": 81,
"y": 0,
"w": 788,
"h": 898
},
{
"x": 251,
"y": 0,
"w": 449,
"h": 898
},
{
"x": 0,
"y": 0,
"w": 1002,
"h": 898
}
]
},
"media_results": {
"result": {
"media_key": "3_1870168451735601152"
}
}
}
]
},
"favorite_count": 3726,
"favorited": false,
"full_text": "NEW: OpenAI just announced 'o3', a breakthrough AI model that significantly surpasses all previous models in benchmarks.\n\n—On ARC-AGI: o3 more than triples o1’s score on low compute and surpasses a score of 87%\n—On EpochAI’s Frontier Math: o3 set a new record, solving 25.2% of https://t.co/mELIIFHLe5",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 132,
"reply_count": 122,
"retweet_count": 565,
"retweeted": false,
"user_id_str": "1314686042",
"id_str": "1870169402248945822"
},
"trend_results": {
"rest_id": "1870645427025871068"
}
}
},
"tweetDisplayType": "CondensedTweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-62824855"
]
},
"clientEventInfo": {
"component": "for_you_pinned",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPinned",
"controllerData": "DAACDAABDAABCgABCAAAAlICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAABA8ADAMAAAAZAQACUgIAAAgAIAEAAAAAgAAAAAAAAAAAgAoADug82nwdBUlEAAAAAA=="
}
}
}
}
},
{
"entryId": "pinned-tweets-1870749872412426244-tweet-1870610404529131549",
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870610404529131549",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyNzI5MDYx",
"rest_id": "2729061",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": true,
"can_dm": false,
"can_media_tag": true,
"created_at": "Wed Mar 28 21:40:55 +0000 2007",
"default_profile": false,
"default_profile_image": false,
"description": "Author/activist/journalist. New book: THE BEZZLE, a thriller about the Shitty Tech Adoption Curve https://t.co/4ZExCQHv6q\n\n@pluralistic@mamot.fr",
"entities": {
"description": {
"urls": [
{
"display_url": "thebezzle.org",
"expanded_url": "http://thebezzle.org",
"url": "https://t.co/4ZExCQHv6q",
"indices": [
99,
122
]
}
]
},
"url": {
"urls": [
{
"display_url": "craphound.com",
"expanded_url": "http://craphound.com",
"url": "https://t.co/bRVgxZc2lp",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 200,
"followers_count": 484657,
"friends_count": 2805,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 11521,
"location": "Beautiful Downtown Burbank",
"media_count": 237080,
"name": "Cory Doctorow NONCONSENSUAL BLUE TICK",
"normal_followers_count": 484657,
"pinned_tweet_ids_str": [
"1870610404529131549"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2729061/1704896472",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1745088398530842624/84rzPaBP_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "doctorow",
"statuses_count": 517882,
"translator_type": "none",
"url": "https://t.co/bRVgxZc2lp",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870610404529131549"
],
"editable_until_msecs": "1734826849000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "13353",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 10,
"bookmarked": false,
"created_at": "Sat Dec 21 23:20:49 +0000 2024",
"conversation_id_str": "1870610404529131549",
"display_text_range": [
0,
222
],
"entities": {
"hashtags": [
{
"indices": [
206,
218
],
"text": "Pluralistic"
}
],
"media": [
{
"display_url": "pic.x.com/Pp8mj9QIll",
"expanded_url": "https://x.com/doctorow/status/1870610404529131549/photo/1",
"ext_alt_text": "A writer, bundled in furs, sitting on a block of ice and writing with a quill pen. His head has been replaced with that of a skeleton. His inkpot is suspended over a camp stove. He has written, 'No man but a blockhead ever wrote except for money.' Surrounding him in a semicircle are nine angry, wealthy men in old fashioned suits, shouting and gesticulating. The background is a faded US$100 bill.",
"id_str": "1870568067476164608",
"indices": [
223,
246
],
"media_key": "3_1870568067476164608",
"media_url_https": "https://pbs.twimg.com/media/GfWXvyYbEAAQqod.jpg",
"type": "photo",
"url": "https://t.co/Pp8mj9QIll",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 750,
"w": 750,
"resize": "fit"
},
"medium": {
"h": 750,
"w": 750,
"resize": "fit"
},
"small": {
"h": 680,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 750,
"width": 750,
"focus_rects": [
{
"x": 0,
"y": 183,
"w": 750,
"h": 420
},
{
"x": 0,
"y": 0,
"w": 750,
"h": 750
},
{
"x": 27,
"y": 0,
"w": 658,
"h": 750
},
{
"x": 169,
"y": 0,
"w": 375,
"h": 750
},
{
"x": 0,
"y": 0,
"w": 750,
"h": 750
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870568067476164608"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [
{
"display_url": "pluralistic.net/2024/12/21/blo…",
"expanded_url": "https://pluralistic.net/2024/12/21/blockheads-r-us/",
"url": "https://t.co/BLOjMuB4Oi",
"indices": [
181,
204
]
}
],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/Pp8mj9QIll",
"expanded_url": "https://x.com/doctorow/status/1870610404529131549/photo/1",
"ext_alt_text": "A writer, bundled in furs, sitting on a block of ice and writing with a quill pen. His head has been replaced with that of a skeleton. His inkpot is suspended over a camp stove. He has written, 'No man but a blockhead ever wrote except for money.' Surrounding him in a semicircle are nine angry, wealthy men in old fashioned suits, shouting and gesticulating. The background is a faded US$100 bill.",
"id_str": "1870568067476164608",
"indices": [
223,
246
],
"media_key": "3_1870568067476164608",
"media_url_https": "https://pbs.twimg.com/media/GfWXvyYbEAAQqod.jpg",
"type": "photo",
"url": "https://t.co/Pp8mj9QIll",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 750,
"w": 750,
"resize": "fit"
},
"medium": {
"h": 750,
"w": 750,
"resize": "fit"
},
"small": {
"h": 680,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 750,
"width": 750,
"focus_rects": [
{
"x": 0,
"y": 183,
"w": 750,
"h": 420
},
{
"x": 0,
"y": 0,
"w": 750,
"h": 750
},
{
"x": 27,
"y": 0,
"w": 658,
"h": 750
},
{
"x": 169,
"y": 0,
"w": 375,
"h": 750
},
{
"x": 0,
"y": 0,
"w": 750,
"h": 750
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870568067476164608"
}
}
}
]
},
"favorite_count": 36,
"favorited": false,
"full_text": "Today's Twitter threads (a Twitter thread).\n\nNOTE: I DID NOT BUY A BLUE TICK. IT WAS NONCONSENSUALLY ADDED TO MY ACCOUNT. \n\nInside: Proud to be a blockhead; and more!\n\nArchived at: https://t.co/BLOjMuB4Oi\n\n#Pluralistic\n\n1/ https://t.co/Pp8mj9QIll",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 0,
"reply_count": 3,
"retweet_count": 5,
"retweeted": false,
"user_id_str": "2729061",
"id_str": "1870610404529131549"
}
}
},
"tweetDisplayType": "CondensedTweet"
},
"feedbackInfo": {
"feedbackKeys": [
"331651263"
]
},
"clientEventInfo": {
"component": "for_you_pinned",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPinned",
"controllerData": "DAACDAABDAABCgABCAAAAlICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAABA8ADAMAAAAZAQACUgIAAAgAIAEAAAAAgAAAAAAAAAAAgAoADug82nwdBUlEAAAAAA=="
}
}
}
}
},
{
"entryId": "pinned-tweets-1870749872412426244-tweet-1870120288601456752",
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870120288601456752",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzUzODM2MzU4OTAxNTAxOTUy",
"rest_id": "1353836358901501952",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": true,
"can_dm": false,
"can_media_tag": true,
"created_at": "Mon Jan 25 22:45:28 +0000 2021",
"default_profile": true,
"default_profile_image": false,
"description": "We're an AI safety and research company that builds reliable, interpretable, and steerable AI systems. Talk to our AI assistant Claude at https://t.co/aRbQ97tMeF.",
"entities": {
"description": {
"urls": [
{
"display_url": "Claude.ai",
"expanded_url": "http://Claude.ai",
"url": "https://t.co/aRbQ97tMeF",
"indices": [
138,
161
]
}
]
},
"url": {
"urls": [
{
"display_url": "anthropic.com",
"expanded_url": "http://anthropic.com",
"url": "https://t.co/MfFw1lb0rR",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 781,
"followers_count": 417694,
"friends_count": 33,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 4807,
"location": "",
"media_count": 305,
"name": "Anthropic",
"normal_followers_count": 417694,
"pinned_tweet_ids_str": [
"1870120288601456752"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1353836358901501952/1719228429",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1798110641414443008/XP8gyBaY_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "AnthropicAI",
"statuses_count": 743,
"translator_type": "none",
"url": "https://t.co/MfFw1lb0rR",
"verified": false,
"verified_type": "Business",
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870120288601456752"
],
"editable_until_msecs": "1734709996000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "293938",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 2024,
"bookmarked": false,
"created_at": "Fri Dec 20 14:53:16 +0000 2024",
"conversation_id_str": "1870120288601456752",
"display_text_range": [
0,
265
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/s9gRqqdcSg",
"expanded_url": "https://x.com/AnthropicAI/status/1870120288601456752/video/1",
"id_str": "1870114193854058496",
"indices": [
266,
289
],
"media_key": "13_1870114193854058496",
"media_url_https": "https://pbs.twimg.com/media/GfQAiHfWIAER3qQ.jpg",
"type": "video",
"url": "https://t.co/s9gRqqdcSg",
"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": []
},
"allow_download_status": {},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 3109022,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1870114193854058496/pl/TKDUuGkCo84tpM5A.m3u8?tag=16&v=3fb"
},
{
"bitrate": 288000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1870114193854058496/vid/avc1/480x270/TH2Uz2FSpcIIKPan.mp4?tag=16"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1870114193854058496/vid/avc1/640x360/daLCJhXolO3odsFt.mp4?tag=16"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1870114193854058496/vid/avc1/1280x720/Oas-UDNP1z4HIfHa.mp4?tag=16"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1870114193854058496/vid/avc1/1920x1080/ddT2g5YgWq5A_a3j.mp4?tag=16"
}
]
},
"media_results": {
"result": {
"media_key": "13_1870114193854058496"
}
}
}
],
"symbols": [],
"timestamps": [
{
"indices": [
81,
86
],
"seconds": 0,
"text": "00:00"
},
{
"indices": [
103,
108
],
"seconds": 128,
"text": "02:08"
},
{
"indices": [
131,
136
],
"seconds": 657,
"text": "10:57"
},
{
"indices": [
156,
161
],
"seconds": 1110,
"text": "18:30"
},
{
"indices": [
193,
198
],
"seconds": 1842,
"text": "30:42"
},
{
"indices": [
214,
219
],
"seconds": 2348,
"text": "39:08"
},
{
"indices": [
238,
243
],
"seconds": 2623,
"text": "43:43"
}
],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/s9gRqqdcSg",
"expanded_url": "https://x.com/AnthropicAI/status/1870120288601456752/video/1",
"id_str": "1870114193854058496",
"indices": [
266,
289
],
"media_key": "13_1870114193854058496",
"media_url_https": "https://pbs.twimg.com/media/GfQAiHfWIAER3qQ.jpg",
"type": "video",
"url": "https://t.co/s9gRqqdcSg",
"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": []
},
"allow_download_status": {},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 3109022,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/1870114193854058496/pl/TKDUuGkCo84tpM5A.m3u8?tag=16&v=3fb"
},
{
"bitrate": 288000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1870114193854058496/vid/avc1/480x270/TH2Uz2FSpcIIKPan.mp4?tag=16"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1870114193854058496/vid/avc1/640x360/daLCJhXolO3odsFt.mp4?tag=16"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1870114193854058496/vid/avc1/1280x720/Oas-UDNP1z4HIfHa.mp4?tag=16"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/1870114193854058496/vid/avc1/1920x1080/ddT2g5YgWq5A_a3j.mp4?tag=16"
}
]
},
"media_results": {
"result": {
"media_key": "13_1870114193854058496"
}
}
}
]
},
"favorite_count": 2553,
"favorited": false,
"full_text": "Our co-founders discuss the past, present, and future of Anthropic.\n\nTimestamps:\n00:00 Why work on AI?\n02:08 Scaling breakthroughs\n10:57 Sentiment shifting\n18:30 The Responsible Scaling Policy\n30:42 Founding story\n39:08 Racing to the top\n43:43 Looking to the future https://t.co/s9gRqqdcSg",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 48,
"reply_count": 90,
"retweet_count": 368,
"retweeted": false,
"user_id_str": "1353836358901501952",
"id_str": "1870120288601456752"
}
}
},
"tweetDisplayType": "CondensedTweet"
},
"feedbackInfo": {
"feedbackKeys": [
"263534443"
]
},
"clientEventInfo": {
"component": "for_you_pinned",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPinned",
"controllerData": "DAACDAABDAABCgABCAAAAlICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAABA8ADAMAAAAZAQACUgIAAAgAIAEAAAAAgAAAAAAAAAAAgAoADug82nwdBUlEAAAAAA=="
}
}
}
}
},
{
"entryId": "pinned-tweets-1870749872412426244-tweet-1870103318783025510",
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870103318783025510",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo5MTg0ODgxMDU3OTQ5MzI3Mzc=",
"rest_id": "918488105794932737",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": true,
"can_dm": false,
"can_media_tag": true,
"created_at": "Thu Oct 12 14:46:43 +0000 2017",
"default_profile": false,
"default_profile_image": false,
"description": "Home of Airdrop Farmers since 2017 \uD83D\uDC68\uD83C\uDFFD‍\uD83C\uDF3E. Find the Best Airdrops including DeFi Airdrops | NFT Airdrops | Easy Airdrops \uD83E\uDE82 | Meme Coins & Earn Crypto \uD83D\uDC68\uD83C\uDFFD‍\uD83D\uDCBB",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "airdropalert.com",
"expanded_url": "https://airdropalert.com/",
"url": "https://t.co/a8G4B5p6dV",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 7502,
"followers_count": 181849,
"friends_count": 3338,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 1335,
"location": "The Netherlands",
"media_count": 3486,
"name": "AirdropAlert.com \uD83E\uDE82\uD83D\uDEA8",
"normal_followers_count": 181849,
"pinned_tweet_ids_str": [
"1870103318783025510"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/918488105794932737/1728052663",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1778177509483294720/RMsERFCF_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Airdropalertcom",
"statuses_count": 9992,
"translator_type": "none",
"url": "https://t.co/a8G4B5p6dV",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1460844867203092483",
"professional_type": "Business",
"category": [
{
"id": 372,
"name": "Farmers Market",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
}
},
"card": {
"rest_id": "https://t.co/0nJpMCpbSB",
"legacy": {
"binding_values": [
{
"key": "photo_image_full_size_large",
"value": {
"image_value": {
"height": 419,
"width": 800,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=jpg&name=800x419"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image",
"value": {
"image_value": {
"height": 150,
"width": 264,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=jpg&name=280x150"
},
"type": "IMAGE"
}
},
{
"key": "description",
"value": {
"string_value": "Suppose this is your first cycle, welcome to crypto. You must be ready for a crypto market crash anytime for any reason",
"type": "STRING"
}
},
{
"key": "domain",
"value": {
"string_value": "airdropalert.com",
"type": "STRING"
}
},
{
"key": "thumbnail_image_large",
"value": {
"image_value": {
"height": 320,
"width": 564,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=jpg&name=800x320_1"
},
"type": "IMAGE"
}
},
{
"key": "summary_photo_image_small",
"value": {
"image_value": {
"height": 202,
"width": 386,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=jpg&name=386x202"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image_original",
"value": {
"image_value": {
"height": 1083,
"width": 1908,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=jpg&name=orig"
},
"type": "IMAGE"
}
},
{
"key": "site",
"value": {
"scribe_key": "publisher_id",
"type": "USER",
"user_value": {
"id_str": "918488105794932737",
"path": []
}
}
},
{
"key": "photo_image_full_size_small",
"value": {
"image_value": {
"height": 202,
"width": 386,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=jpg&name=386x202"
},
"type": "IMAGE"
}
},
{
"key": "summary_photo_image_large",
"value": {
"image_value": {
"height": 419,
"width": 800,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=jpg&name=800x419"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image_small",
"value": {
"image_value": {
"height": 57,
"width": 100,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=jpg&name=100x100"
},
"type": "IMAGE"
}
},
{
"key": "creator",
"value": {
"type": "USER",
"user_value": {
"id_str": "918488105794932737",
"path": []
}
}
},
{
"key": "thumbnail_image_x_large",
"value": {
"image_value": {
"height": 1083,
"width": 1908,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=png&name=2048x2048_2_exp"
},
"type": "IMAGE"
}
},
{
"key": "photo_image_full_size_original",
"value": {
"image_value": {
"height": 1083,
"width": 1908,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=jpg&name=orig"
},
"type": "IMAGE"
}
},
{
"key": "vanity_url",
"value": {
"scribe_key": "vanity_url",
"string_value": "airdropalert.com",
"type": "STRING"
}
},
{
"key": "photo_image_full_size",
"value": {
"image_value": {
"height": 314,
"width": 600,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=jpg&name=600x314"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image_color",
"value": {
"image_color_value": {
"palette": [
{
"rgb": {
"blue": 81,
"green": 63,
"red": 130
},
"percentage": 15.45
},
{
"rgb": {
"blue": 70,
"green": 61,
"red": 181
},
"percentage": 13.2
},
{
"rgb": {
"blue": 70,
"green": 34,
"red": 69
},
"percentage": 12.68
},
{
"rgb": {
"blue": 172,
"green": 187,
"red": 198
},
"percentage": 8.57
},
{
"rgb": {
"blue": 194,
"green": 180,
"red": 89
},
"percentage": 8.26
}
]
},
"type": "IMAGE_COLOR"
}
},
{
"key": "title",
"value": {
"string_value": "Crypto Market Crash: BTC, ETH, DOGE Hit Hard – What’s Next? - Airdrop Alert",
"type": "STRING"
}
},
{
"key": "summary_photo_image_color",
"value": {
"image_color_value": {
"palette": [
{
"rgb": {
"blue": 81,
"green": 63,
"red": 130
},
"percentage": 15.45
},
{
"rgb": {
"blue": 70,
"green": 61,
"red": 181
},
"percentage": 13.2
},
{
"rgb": {
"blue": 70,
"green": 34,
"red": 69
},
"percentage": 12.68
},
{
"rgb": {
"blue": 172,
"green": 187,
"red": 198
},
"percentage": 8.57
},
{
"rgb": {
"blue": 194,
"green": 180,
"red": 89
},
"percentage": 8.26
}
]
},
"type": "IMAGE_COLOR"
}
},
{
"key": "summary_photo_image_x_large",
"value": {
"image_value": {
"height": 1083,
"width": 1908,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=png&name=2048x2048_2_exp"
},
"type": "IMAGE"
}
},
{
"key": "summary_photo_image",
"value": {
"image_value": {
"height": 314,
"width": 600,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=jpg&name=600x314"
},
"type": "IMAGE"
}
},
{
"key": "photo_image_full_size_color",
"value": {
"image_color_value": {
"palette": [
{
"rgb": {
"blue": 81,
"green": 63,
"red": 130
},
"percentage": 15.45
},
{
"rgb": {
"blue": 70,
"green": 61,
"red": 181
},
"percentage": 13.2
},
{
"rgb": {
"blue": 70,
"green": 34,
"red": 69
},
"percentage": 12.68
},
{
"rgb": {
"blue": 172,
"green": 187,
"red": 198
},
"percentage": 8.57
},
{
"rgb": {
"blue": 194,
"green": 180,
"red": 89
},
"percentage": 8.26
}
]
},
"type": "IMAGE_COLOR"
}
},
{
"key": "photo_image_full_size_x_large",
"value": {
"image_value": {
"height": 1083,
"width": 1908,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=png&name=2048x2048_2_exp"
},
"type": "IMAGE"
}
},
{
"key": "card_url",
"value": {
"scribe_key": "card_url",
"string_value": "https://t.co/0nJpMCpbSB",
"type": "STRING"
}
},
{
"key": "summary_photo_image_original",
"value": {
"image_value": {
"height": 1083,
"width": 1908,
"url": "https://pbs.twimg.com/card_img/1870103287359266816/0gjWfuNo?format=jpg&name=orig"
},
"type": "IMAGE"
}
}
],
"card_platform": {
"platform": {
"audience": {
"name": "production"
},
"device": {
"name": "Swift",
"version": "12"
}
}
},
"name": "summary_large_image",
"url": "https://t.co/0nJpMCpbSB",
"user_refs_results": [
{
"result": {
"__typename": "User",
"id": "VXNlcjo5MTg0ODgxMDU3OTQ5MzI3Mzc=",
"rest_id": "918488105794932737",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": true,
"can_dm": false,
"can_media_tag": true,
"created_at": "Thu Oct 12 14:46:43 +0000 2017",
"default_profile": false,
"default_profile_image": false,
"description": "Home of Airdrop Farmers since 2017 \uD83D\uDC68\uD83C\uDFFD‍\uD83C\uDF3E. Find the Best Airdrops including DeFi Airdrops | NFT Airdrops | Easy Airdrops \uD83E\uDE82 | Meme Coins & Earn Crypto \uD83D\uDC68\uD83C\uDFFD‍\uD83D\uDCBB",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "airdropalert.com",
"expanded_url": "https://airdropalert.com/",
"url": "https://t.co/a8G4B5p6dV",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 7502,
"followers_count": 181849,
"friends_count": 3338,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 1335,
"location": "The Netherlands",
"media_count": 3486,
"name": "AirdropAlert.com \uD83E\uDE82\uD83D\uDEA8",
"normal_followers_count": 181849,
"pinned_tweet_ids_str": [
"1870103318783025510"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/918488105794932737/1728052663",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1778177509483294720/RMsERFCF_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Airdropalertcom",
"statuses_count": 9992,
"translator_type": "none",
"url": "https://t.co/a8G4B5p6dV",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1460844867203092483",
"professional_type": "Business",
"category": [
{
"id": 372,
"name": "Farmers Market",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjo5MTg0ODgxMDU3OTQ5MzI3Mzc=",
"rest_id": "918488105794932737",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": true,
"can_dm": false,
"can_media_tag": true,
"created_at": "Thu Oct 12 14:46:43 +0000 2017",
"default_profile": false,
"default_profile_image": false,
"description": "Home of Airdrop Farmers since 2017 \uD83D\uDC68\uD83C\uDFFD‍\uD83C\uDF3E. Find the Best Airdrops including DeFi Airdrops | NFT Airdrops | Easy Airdrops \uD83E\uDE82 | Meme Coins & Earn Crypto \uD83D\uDC68\uD83C\uDFFD‍\uD83D\uDCBB",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "airdropalert.com",
"expanded_url": "https://airdropalert.com/",
"url": "https://t.co/a8G4B5p6dV",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 7502,
"followers_count": 181849,
"friends_count": 3338,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 1335,
"location": "The Netherlands",
"media_count": 3486,
"name": "AirdropAlert.com \uD83E\uDE82\uD83D\uDEA8",
"normal_followers_count": 181849,
"pinned_tweet_ids_str": [
"1870103318783025510"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/918488105794932737/1728052663",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1778177509483294720/RMsERFCF_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Airdropalertcom",
"statuses_count": 9992,
"translator_type": "none",
"url": "https://t.co/a8G4B5p6dV",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1460844867203092483",
"professional_type": "Business",
"category": [
{
"id": 372,
"name": "Farmers Market",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
}
]
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870103318783025510"
],
"editable_until_msecs": "1734705950000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2091",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 1,
"bookmarked": false,
"created_at": "Fri Dec 20 13:45:50 +0000 2024",
"conversation_id_str": "1870103318783025510",
"display_text_range": [
0,
258
],
"entities": {
"hashtags": [],
"symbols": [
{
"indices": [
33,
37
],
"text": "BTC"
},
{
"indices": [
39,
43
],
"text": "ETH"
},
{
"indices": [
45,
49
],
"text": "SOL"
},
{
"indices": [
54,
59
],
"text": "DOGE"
}
],
"timestamps": [],
"urls": [
{
"display_url": "airdropalert.com/blogs/crypto-m…",
"expanded_url": "https://airdropalert.com/blogs/crypto-market-crash-december/",
"url": "https://t.co/0nJpMCpbSB",
"indices": [
235,
258
]
}
],
"user_mentions": []
},
"favorite_count": 7,
"favorited": false,
"full_text": "\uD83D\uDEA8 The crypto market is in chaos! $BTC, $ETH, $SOL and $DOGE are tumbling, and the panic is REAL. Is this the dip to buy or a sign of more pain?\n\nLet's look at some critical levels. \uD83D\uDCC9\n\nDive into our latest blog to uncover what’s next! \uD83D\uDC47https://t.co/0nJpMCpbSB",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 0,
"reply_count": 1,
"retweet_count": 0,
"retweeted": false,
"user_id_str": "918488105794932737",
"id_str": "1870103318783025510"
}
}
},
"tweetDisplayType": "CondensedTweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-1362394353"
]
},
"clientEventInfo": {
"component": "for_you_pinned",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPinned",
"controllerData": "DAACDAABDAABCgABCAAAAlICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAABA8ADAMAAAAZAQACUgIAAAgAIAEAAAAAgAAAAAAAAAAAgAoADug82nwdBUlEAAAAAA=="
}
}
}
}
},
{
"entryId": "pinned-tweets-1870749872412426244-tweet-1870495573612396750",
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870495573612396750",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyNjA3Njk1MA==",
"rest_id": "26076950",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": true,
"can_dm": true,
"can_media_tag": true,
"created_at": "Mon Mar 23 20:02:07 +0000 2009",
"default_profile": true,
"default_profile_image": false,
"description": "Developer and Writer - Practical AI.",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 24610,
"followers_count": 60742,
"friends_count": 923,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 1125,
"location": "",
"media_count": 1613,
"name": "Borriss",
"normal_followers_count": 60742,
"pinned_tweet_ids_str": [
"1870495573612396750"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/26076950/1694370668",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1824153608830504960/TSRkRQTk_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "_Borriss_",
"statuses_count": 12606,
"translator_type": "none",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1628328896071434244",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {
"is_enabled": true
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870495573612396750"
],
"editable_until_msecs": "1734799471000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "3826",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 10,
"bookmarked": false,
"created_at": "Sat Dec 21 15:44:31 +0000 2024",
"conversation_id_str": "1870495573612396750",
"display_text_range": [
0,
255
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/08U3I43h7h",
"expanded_url": "https://x.com/_Borriss_/status/1870495573612396750/video/1",
"id_str": "1870491528109391872",
"indices": [
256,
279
],
"media_key": "7_1870491528109391872",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1870491528109391872/pu/img/gGH7_EpRpzExkSpT.jpg",
"type": "video",
"url": "https://t.co/08U3I43h7h",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 1080,
"w": 1418,
"resize": "fit"
},
"medium": {
"h": 914,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 518,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1080,
"width": 1418,
"focus_rects": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
709,
540
],
"duration_millis": 49468,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/1870491528109391872/pu/pl/8CQ4tkt25Wk7k3PP.m3u8?tag=12"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870491528109391872/pu/vid/avc1/354x270/ld8q8Mwx-tIEUDlC.mp4?tag=12"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870491528109391872/pu/vid/avc1/472x360/PkGqYPniukplQQYv.mp4?tag=12"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870491528109391872/pu/vid/avc1/944x720/5E18KqtdWyYrpCgK.mp4?tag=12"
}
]
},
"media_results": {
"result": {
"media_key": "7_1870491528109391872"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1072450495086817280",
"name": "invideo",
"screen_name": "invideoOfficial",
"indices": [
115,
131
]
}
]
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/08U3I43h7h",
"expanded_url": "https://x.com/_Borriss_/status/1870495573612396750/video/1",
"id_str": "1870491528109391872",
"indices": [
256,
279
],
"media_key": "7_1870491528109391872",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1870491528109391872/pu/img/gGH7_EpRpzExkSpT.jpg",
"type": "video",
"url": "https://t.co/08U3I43h7h",
"additional_media_info": {
"monetizable": false
},
"ext_media_availability": {
"status": "Available"
},
"sizes": {
"large": {
"h": 1080,
"w": 1418,
"resize": "fit"
},
"medium": {
"h": 914,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 518,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1080,
"width": 1418,
"focus_rects": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
709,
540
],
"duration_millis": 49468,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/1870491528109391872/pu/pl/8CQ4tkt25Wk7k3PP.m3u8?tag=12"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870491528109391872/pu/vid/avc1/354x270/ld8q8Mwx-tIEUDlC.mp4?tag=12"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870491528109391872/pu/vid/avc1/472x360/PkGqYPniukplQQYv.mp4?tag=12"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870491528109391872/pu/vid/avc1/944x720/5E18KqtdWyYrpCgK.mp4?tag=12"
}
]
},
"media_results": {
"result": {
"media_key": "7_1870491528109391872"
}
}
}
]
},
"favorite_count": 17,
"favorited": false,
"full_text": "For 2025, I plan to dive more seriously into AI video generation.\n\nA tool I’ve partnered with and will be using is @invideoOfficial.\n\nIt’s an advanced platform that streamlines video creation through a suite of AI-driven features.\n\nHere are a few of them: https://t.co/08U3I43h7h",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 0,
"reply_count": 6,
"retweet_count": 3,
"retweeted": false,
"user_id_str": "26076950",
"id_str": "1870495573612396750"
}
}
},
"tweetDisplayType": "CondensedTweet"
},
"feedbackInfo": {
"feedbackKeys": [
"67563956"
]
},
"clientEventInfo": {
"component": "for_you_pinned",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPinned",
"controllerData": "DAACDAABDAABCgABCAAAAlICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAABA8ADAMAAAAZAQACUgIAAAgAIAEAAAAAgAAAAAAAAAAAgAoADug82nwdBUlEAAAAAA=="
}
}
}
}
},
{
"entryId": "pinned-tweets-1870749872412426244-tweet-1870155183025471855",
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870155183025471855",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozOTgwNzM1NTkw",
"rest_id": "3980735590",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"followed_by": true,
"notifications": true,
"following": true,
"can_dm": true,
"can_media_tag": false,
"created_at": "Sat Oct 17 16:21:57 +0000 2015",
"default_profile": false,
"default_profile_image": false,
"description": "Reporting AI nonsense. A future news media, driven by virtual assistants \uD83E\uDD16",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "linktr.ee/testingcatalog",
"expanded_url": "https://linktr.ee/testingcatalog",
"url": "https://t.co/CxHJ5xSio7",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 43471,
"followers_count": 13128,
"friends_count": 998,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 279,
"location": "Berlin, Germany",
"media_count": 5488,
"name": "TestingCatalog News \uD83D\uDDDE",
"normal_followers_count": 13128,
"pinned_tweet_ids_str": [
"1870155183025471855"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3980735590/1731778741",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1732184836360568832/12P5amKA_normal.png",
"profile_interstitial_type": "",
"screen_name": "testingcatalog",
"statuses_count": 15938,
"translator_type": "none",
"url": "https://t.co/CxHJ5xSio7",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1462149641328373767",
"professional_type": "Creator",
"category": [
{
"id": 580,
"name": "Media & News Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "bc1qjfqavxg543ffqqqsas7hy7dukhl5rf5fk3044a",
"ethereum_handle": "0xC2F463b1Cd6b84f8213E552B08eA2fD175b02913",
"patreon_handle": ""
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870155183025471855"
],
"editable_until_msecs": "1734718316000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "19942",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 6,
"bookmarked": false,
"created_at": "Fri Dec 20 17:11:56 +0000 2024",
"conversation_id_str": "1870155183025471855",
"display_text_range": [
0,
77
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/3775mHGD1X",
"expanded_url": "https://x.com/testingcatalog/status/1870155183025471855/photo/1",
"id_str": "1870154594531028994",
"indices": [
78,
101
],
"media_key": "3_1870154594531028994",
"media_url_https": "https://pbs.twimg.com/media/GfQfsfoWMAI6Vvb.jpg",
"type": "photo",
"url": "https://t.co/3775mHGD1X",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1031,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 604,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 342,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1522,
"width": 3024,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 2718,
"h": 1522
},
{
"x": 221,
"y": 0,
"w": 1522,
"h": 1522
},
{
"x": 315,
"y": 0,
"w": 1335,
"h": 1522
},
{
"x": 602,
"y": 0,
"w": 761,
"h": 1522
},
{
"x": 0,
"y": 0,
"w": 3024,
"h": 1522
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870154594531028994"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/3775mHGD1X",
"expanded_url": "https://x.com/testingcatalog/status/1870155183025471855/photo/1",
"id_str": "1870154594531028994",
"indices": [
78,
101
],
"media_key": "3_1870154594531028994",
"media_url_https": "https://pbs.twimg.com/media/GfQfsfoWMAI6Vvb.jpg",
"type": "photo",
"url": "https://t.co/3775mHGD1X",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1031,
"w": 2048,
"resize": "fit"
},
"medium": {
"h": 604,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 342,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1522,
"width": 3024,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 2718,
"h": 1522
},
{
"x": 221,
"y": 0,
"w": 1522,
"h": 1522
},
{
"x": 315,
"y": 0,
"w": 1335,
"h": 1522
},
{
"x": 602,
"y": 0,
"w": 761,
"h": 1522
},
{
"x": 0,
"y": 0,
"w": 3024,
"h": 1522
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870154594531028994"
}
}
}
]
},
"favorite_count": 102,
"favorited": false,
"full_text": "The time has come! \uD83C\uDF85\n\nOpenAI Day 12 is almost there \uD83D\uDC40\uD83D\uDC40\uD83D\uDC40\n\nText updates below \uD83E\uDDF5 https://t.co/3775mHGD1X",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 1,
"reply_count": 6,
"retweet_count": 4,
"retweeted": false,
"user_id_str": "3980735590",
"id_str": "1870155183025471855"
},
"trend_results": {
"rest_id": "1870645427025871068"
}
}
},
"tweetDisplayType": "CondensedTweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-364959302"
]
},
"clientEventInfo": {
"component": "for_you_pinned",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPinned",
"controllerData": "DAACDAABDAABCgABCAAAAlICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAABA8ADAMAAAAZAQACUgIAAAgAIAEAAAAAgAAAAAAAAAAAgAoADug82nwdBUlEAAAAAA=="
}
}
}
}
}
],
"displayType": "Carousel",
"header": {
"displayType": "Classic",
"text": "Pinned by people you follow",
"landingUrl": {
"url": "https://twitter.com/i/topics/pinned",
"urlType": "ExternalUrl"
},
"sticky": false
},
"clientEventInfo": {
"component": "for_you_pinned",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPinned",
"controllerData": "DAACDAABDAABCgABCAAAAlICAAEKAAKAAAAAAAEAAAoACRWJuPQQCssgCAALAAAABA8ADAMAAAAQAQACUgIAAAgAAAEAAAAAgAoADug82nwdBUlEAAAAAA=="
}
}
},
"feedbackInfo": {
"feedbackKeys": [
"923777186"
]
}
}
},
{
"entryId": "promoted-tweet-1861111894100320572-36c01af00de082a5",
"sortIndex": "1870749872412426235",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1861111894100320572",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyMjQ0OTk0OTQ1",
"rest_id": "2244994945",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": true,
"can_dm": true,
"can_media_tag": true,
"created_at": "Sat Dec 14 04:35:55 +0000 2013",
"default_profile": false,
"default_profile_image": false,
"description": "The voice of the X Dev team and your official source for updates, news, and events, related to the X API.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "developer.x.com",
"expanded_url": "https://developer.x.com/",
"url": "https://t.co/O13IfbuPqq",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 2169,
"followers_count": 675860,
"friends_count": 748,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 2713,
"location": "127.0.0.1",
"media_count": 821,
"name": "Developers",
"normal_followers_count": 675860,
"pinned_tweet_ids_str": [
"1851463451929186504"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2244994945/1690213128",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "XDevelopers",
"statuses_count": 4064,
"translator_type": "regular",
"url": "https://t.co/O13IfbuPqq",
"verified": false,
"verified_type": "Business",
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1516891231749517312",
"professional_type": "Business",
"category": [
{
"id": 1009,
"name": "Community",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
}
},
"card": {
"rest_id": "card://1861111892657238016",
"legacy": {
"binding_values": [
{
"key": "unified_card",
"value": {
"string_value": "{\"type\":\"image_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Subscribe to Pro Today!\",\"is_rtl\":false},\"subtitle\":{\"content\":\"twitter.com\",\"is_rtl\":false},\"destination\":\"browser_1\"}},\"media_1\":{\"type\":\"media\",\"data\":{\"id\":\"3_1859993093711241216\",\"destination\":\"browser_1\"}}},\"destination_objects\":{\"browser_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://developer.x.com/en/portal/products/pro\",\"vanity\":\"twitter.com\"}}}},\"components\":[\"media_1\",\"details_1\"],\"media_entities\":{\"3_1859993093711241216\":{\"id\":1859993093711241216,\"id_str\":\"1859993093711241216\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GdAF3TNWoAAkZAp.png\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":418,\"focus_rects\":[{\"x\":54,\"y\":0,\"h\":418,\"w\":746},{\"x\":291,\"y\":0,\"h\":418,\"w\":418},{\"x\":317,\"y\":0,\"h\":418,\"w\":367},{\"x\":396,\"y\":0,\"h\":418,\"w\":209},{\"x\":0,\"y\":0,\"h\":418,\"w\":800}]},\"sizes\":{\"large\":{\"w\":800,\"h\":418,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":355,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":800,\"h\":418,\"resize\":\"fit\"}},\"source_user_id\":2244994945,\"source_user_id_str\":\"2244994945\",\"media_key\":\"3_1859993093711241216\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":7,\"green\":11,\"blue\":24},\"percentage\":75.01},{\"rgb\":{\"red\":36,\"green\":54,\"blue\":99},\"percentage\":7.86},{\"rgb\":{\"red\":156,\"green\":160,\"blue\":171},\"percentage\":4.19},{\"rgb\":{\"red\":47,\"green\":120,\"blue\":138},\"percentage\":3.43},{\"rgb\":{\"red\":83,\"green\":51,\"blue\":129},\"percentage\":2.58}]}},\"ttl\":-1}}}}}",
"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://1861111892657238016",
"user_refs_results": []
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1861111894100320572"
],
"editable_until_msecs": "1732562227000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "91691776",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://twitter.com\" rel=\"nofollow\">Twitter for Advertisers</a>",
"legacy": {
"bookmark_count": 636,
"bookmarked": false,
"created_at": "Mon Nov 25 18:17:07 +0000 2024",
"conversation_id_str": "1861111894100320572",
"display_text_range": [
0,
111
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 24178,
"favorited": false,
"full_text": "Calling all developers! \uD83D\uDCE3\n\nInnovate with our real-time and historical data on the X API.\n\nGet started with Pro\uD83D\uDC47",
"is_quote_status": false,
"lang": "en",
"quote_count": 112,
"reply_count": 1241,
"retweet_count": 4775,
"retweeted": false,
"scopes": {
"followers": false
},
"user_id_str": "2244994945",
"id_str": "1861111894100320572"
}
}
},
"tweetDisplayType": "Tweet",
"promotedMetadata": {
"advertiser_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyMjQ0OTk0OTQ1",
"rest_id": "2244994945",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg"
},
"description": "X",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": true,
"can_dm": true,
"can_media_tag": true,
"created_at": "Sat Dec 14 04:35:55 +0000 2013",
"default_profile": false,
"default_profile_image": false,
"description": "The voice of the X Dev team and your official source for updates, news, and events, related to the X API.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "developer.x.com",
"expanded_url": "https://developer.x.com/",
"url": "https://t.co/O13IfbuPqq",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 2169,
"followers_count": 675860,
"friends_count": 748,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 2713,
"location": "127.0.0.1",
"media_count": 821,
"name": "Developers",
"normal_followers_count": 675860,
"pinned_tweet_ids_str": [
"1851463451929186504"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2244994945/1690213128",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "XDevelopers",
"statuses_count": 4064,
"translator_type": "regular",
"url": "https://t.co/O13IfbuPqq",
"verified": false,
"verified_type": "Business",
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1516891231749517312",
"professional_type": "Business",
"category": [
{
"id": 1009,
"name": "Community",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
"adMetadataContainer": {
"renderLegacyWebsiteCard": false
},
"disclosureType": "NoDisclosure",
"experimentValues": [
{
"key": "nsfa_htl_experiment_enable",
"value": "10000"
},
{
"key": "nsfa_htl_experimental_threshold_profanity",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_binary",
"value": "1.0"
},
{
"key": "min_gap_for_nsfw_avoidance",
"value": "1"
},
{
"key": "nsfa_htl_experimental_threshold_drugs",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_hate_violence",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_sexual",
"value": "1.0"
},
{
"key": "website_card_variation",
"value": "0"
}
],
"impressionId": "36c01af00de082a5",
"impressionString": "36c01af00de082a5",
"clickTrackingInfo": {
"urlParams": [
{
"key": "twclid",
"value": "2-50ucpmavx1pe0smlcrac32uen"
}
]
}
}
},
"clientEventInfo": {
"component": "for_you_promoted",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPromoted",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkVibj0EArLIAAAAAA="
}
}
}
}
},
{
"entryId": "tweet-1870186518230511844",
"sortIndex": "1870749872412426234",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870186518230511844",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0Mzk4NjI2MTIy",
"rest_id": "4398626122",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"notifications": true,
"following": true,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sun Dec 06 22:51:08 +0000 2015",
"default_profile": true,
"default_profile_image": false,
"description": "OpenAI’s mission is to ensure that artificial general intelligence benefits all of humanity. We’re hiring: https://t.co/dJGr6LgzPA",
"entities": {
"description": {
"urls": [
{
"display_url": "openai.com/jobs",
"expanded_url": "http://openai.com/jobs",
"url": "https://t.co/dJGr6LgzPA",
"indices": [
107,
130
]
}
]
},
"url": {
"urls": [
{
"display_url": "openai.com",
"expanded_url": "https://openai.com",
"url": "https://t.co/3bPlZZkvdL",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 583,
"followers_count": 3813751,
"friends_count": 3,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 21570,
"location": "",
"media_count": 286,
"name": "OpenAI",
"normal_followers_count": 3813751,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4398626122/1649351819",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1634058036934500352/b4F1eVpJ_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "OpenAI",
"statuses_count": 999,
"translator_type": "none",
"url": "https://t.co/3bPlZZkvdL",
"verified": false,
"verified_type": "Business",
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870186518230511844"
],
"editable_until_msecs": "1734725786000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1281294",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 2234,
"bookmarked": false,
"created_at": "Fri Dec 20 19:16:26 +0000 2024",
"conversation_id_str": "1870186518230511844",
"display_text_range": [
0,
104
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/e4dQWdLbAD",
"expanded_url": "https://x.com/OpenAI/status/1870186518230511844/video/1",
"id_str": "1870183037918687232",
"indices": [
105,
128
],
"media_key": "7_1870183037918687232",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1870183037918687232/pu/img/tr8F04i0Sml6_XNO.jpg",
"type": "video",
"url": "https://t.co/e4dQWdLbAD",
"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": 578016,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/1870183037918687232/pu/pl/O3KgayeTZdL57zSs.m3u8?tag=14"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870183037918687232/pu/vid/avc1/480x270/2nzHgLZjrVcy8SIC.mp4?tag=14"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870183037918687232/pu/vid/avc1/640x360/L4JEQl-KkYkX1Klu.mp4?tag=14"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870183037918687232/pu/vid/avc1/1280x720/Y8rp0yDUythi0JyI.mp4?tag=14"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870183037918687232/pu/vid/avc1/1920x1080/PVhrn0AC4nKJXyvf.mp4?tag=14"
}
]
},
"media_results": {
"result": {
"media_key": "7_1870183037918687232"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/e4dQWdLbAD",
"expanded_url": "https://x.com/OpenAI/status/1870186518230511844/video/1",
"id_str": "1870183037918687232",
"indices": [
105,
128
],
"media_key": "7_1870183037918687232",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1870183037918687232/pu/img/tr8F04i0Sml6_XNO.jpg",
"type": "video",
"url": "https://t.co/e4dQWdLbAD",
"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": 578016,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/1870183037918687232/pu/pl/O3KgayeTZdL57zSs.m3u8?tag=14"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870183037918687232/pu/vid/avc1/480x270/2nzHgLZjrVcy8SIC.mp4?tag=14"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870183037918687232/pu/vid/avc1/640x360/L4JEQl-KkYkX1Klu.mp4?tag=14"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870183037918687232/pu/vid/avc1/1280x720/Y8rp0yDUythi0JyI.mp4?tag=14"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870183037918687232/pu/vid/avc1/1920x1080/PVhrn0AC4nKJXyvf.mp4?tag=14"
}
]
},
"media_results": {
"result": {
"media_key": "7_1870183037918687232"
}
}
}
]
},
"favorite_count": 9404,
"favorited": false,
"full_text": "Today, we shared evals for an early version of the next model in our o-model reasoning series: OpenAI o3 https://t.co/e4dQWdLbAD",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 614,
"reply_count": 451,
"retweet_count": 1490,
"retweeted": false,
"user_id_str": "4398626122",
"id_str": "1870186518230511844"
},
"trend_results": {
"rest_id": "1870645427025871068"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-2095555525"
]
},
"clientEventInfo": {
"component": "for_you_simclusters",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouSimclusters",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAEAAEAEgAAoACRWJuPQQCssgCAALAAAABg8ADAMAAAAZAQACAkIAAAAAIAEQAEAAgAgAAAIAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "community-to-join-1870749872412426247",
"sortIndex": "1870749872412426233",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "community-to-join-1870749872412426247-community-1511732469938147331",
"item": {
"itemContent": {
"itemType": "TimelineCommunity",
"__typename": "TimelineCommunity",
"community_results": {
"result": {
"__typename": "Community",
"id_str": "1511732469938147331",
"name": "Infosec Twitter",
"description": "Community that promotes knowledge exchange, timely notifications, and up-to-date awareness of the latest happenings inf the industry.",
"created_at": 1649260082124,
"search_tags": [],
"is_nsfw": false,
"actions": {
"delete_action_result": {
"__typename": "CommunityDeleteActionUnavailable",
"reason": "Unavailable"
},
"join_action_result": {
"__typename": "CommunityJoinAction"
},
"leave_action_result": {
"__typename": "CommunityLeaveActionUnavailable",
"reason": "ViewerNotMember",
"message": "Not a member."
},
"pin_action_result": {
"__typename": "CommunityTweetPinActionUnavailable"
}
},
"admin_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo5NzQ3NDA5MDc0MTIwODY3ODQ=",
"rest_id": "974740907412086784",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Fri Mar 16 20:15:16 +0000 2018",
"default_profile": false,
"default_profile_image": false,
"description": "Security Analyst | former Software Dev | Layer 8 Debugger | Master of Mischief | Ramen destroyer \uD83C\uDF5C | https://t.co/h7GJH79Wmd",
"entities": {
"description": {
"urls": [
{
"display_url": "buymeacoffee.com/CyberPanda",
"expanded_url": "http://buymeacoffee.com/CyberPanda",
"url": "https://t.co/h7GJH79Wmd",
"indices": [
103,
126
]
}
]
},
"url": {
"urls": [
{
"display_url": "cyberpanda.github.io",
"expanded_url": "http://cyberpanda.github.io",
"url": "https://t.co/526dFiIt80",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 86097,
"followers_count": 9300,
"friends_count": 885,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 66,
"location": "Internet",
"media_count": 7237,
"name": "Cyber Panda \uD83D\uDC3C",
"normal_followers_count": 9300,
"pinned_tweet_ids_str": [
"1678488495612911616"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/974740907412086784/1690711736",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1836752860811321345/5YQF8eyZ_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "realcyberpanda",
"statuses_count": 16479,
"translator_type": "none",
"url": "https://t.co/526dFiIt80",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1513220122500120580",
"professional_type": "Creator",
"category": [
{
"id": 428,
"name": "Cleaning Service",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": false,
"bitcoin_handle": "38UkHmgruwuvLwT3TUd8szzq8K3xVMwHbQ",
"ethereum_handle": "0x6A4826b91304C149390C9dA2cDAEE2fe1079a350",
"patreon_handle": ""
}
}
},
"creator_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo5NzQ3NDA5MDc0MTIwODY3ODQ=",
"rest_id": "974740907412086784",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Fri Mar 16 20:15:16 +0000 2018",
"default_profile": false,
"default_profile_image": false,
"description": "Security Analyst | former Software Dev | Layer 8 Debugger | Master of Mischief | Ramen destroyer \uD83C\uDF5C | https://t.co/h7GJH79Wmd",
"entities": {
"description": {
"urls": [
{
"display_url": "buymeacoffee.com/CyberPanda",
"expanded_url": "http://buymeacoffee.com/CyberPanda",
"url": "https://t.co/h7GJH79Wmd",
"indices": [
103,
126
]
}
]
},
"url": {
"urls": [
{
"display_url": "cyberpanda.github.io",
"expanded_url": "http://cyberpanda.github.io",
"url": "https://t.co/526dFiIt80",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 86097,
"followers_count": 9300,
"friends_count": 885,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 66,
"location": "Internet",
"media_count": 7237,
"name": "Cyber Panda \uD83D\uDC3C",
"normal_followers_count": 9300,
"pinned_tweet_ids_str": [
"1678488495612911616"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/974740907412086784/1690711736",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1836752860811321345/5YQF8eyZ_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "realcyberpanda",
"statuses_count": 16479,
"translator_type": "none",
"url": "https://t.co/526dFiIt80",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1513220122500120580",
"professional_type": "Creator",
"category": [
{
"id": 428,
"name": "Cleaning Service",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": false,
"bitcoin_handle": "38UkHmgruwuvLwT3TUd8szzq8K3xVMwHbQ",
"ethereum_handle": "0x6A4826b91304C149390C9dA2cDAEE2fe1079a350",
"patreon_handle": ""
}
}
},
"invites_result": {
"__typename": "CommunityInvitesUnavailable",
"reason": "Unavailable",
"message": "Must be a member of the Community to invite others."
},
"join_policy": "Open",
"invites_policy": "MemberInvitesAllowed",
"is_pinned": false,
"members_facepile_results": [
{
"result": {
"__typename": "User",
"id": "VXNlcjo5NzQ3NDA5MDc0MTIwODY3ODQ=",
"rest_id": "974740907412086784",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Fri Mar 16 20:15:16 +0000 2018",
"default_profile": false,
"default_profile_image": false,
"description": "Security Analyst | former Software Dev | Layer 8 Debugger | Master of Mischief | Ramen destroyer \uD83C\uDF5C | https://t.co/h7GJH79Wmd",
"entities": {
"description": {
"urls": [
{
"display_url": "buymeacoffee.com/CyberPanda",
"expanded_url": "http://buymeacoffee.com/CyberPanda",
"url": "https://t.co/h7GJH79Wmd",
"indices": [
103,
126
]
}
]
},
"url": {
"urls": [
{
"display_url": "cyberpanda.github.io",
"expanded_url": "http://cyberpanda.github.io",
"url": "https://t.co/526dFiIt80",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 86097,
"followers_count": 9300,
"friends_count": 885,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 66,
"location": "Internet",
"media_count": 7237,
"name": "Cyber Panda \uD83D\uDC3C",
"normal_followers_count": 9300,
"pinned_tweet_ids_str": [
"1678488495612911616"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/974740907412086784/1690711736",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1836752860811321345/5YQF8eyZ_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "realcyberpanda",
"statuses_count": 16479,
"translator_type": "none",
"url": "https://t.co/526dFiIt80",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1513220122500120580",
"professional_type": "Creator",
"category": [
{
"id": 428,
"name": "Cleaning Service",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": false,
"bitcoin_handle": "38UkHmgruwuvLwT3TUd8szzq8K3xVMwHbQ",
"ethereum_handle": "0x6A4826b91304C149390C9dA2cDAEE2fe1079a350",
"patreon_handle": ""
}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjo5MDAyNDgwMDU=",
"rest_id": "900248005",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Oct 23 17:10:29 +0000 2012",
"default_profile": false,
"default_profile_image": false,
"description": "Founder @RaicesCyberOrg , Cyber Security 33+ yrs, US ARMY Intel Veteran, Author, Content Creator, Space Enthusiast and Father of 9 \uD83C\uDDF5\uD83C\uDDF7 #PracticeSafeCyber",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "youtube.com/EricBelardoCyb…",
"expanded_url": "https://www.youtube.com/EricBelardoCyber",
"url": "https://t.co/oZTXHMYEds",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 30933,
"followers_count": 4354,
"friends_count": 4807,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 48,
"location": "PA, USA",
"media_count": 3472,
"name": "Eric Belardo, The Cyber Papa",
"normal_followers_count": 4354,
"pinned_tweet_ids_str": [
"1736738434201346442"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/900248005/1639885800",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1733222378795069440/WBOC53DK_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "ebelardo73",
"statuses_count": 14648,
"translator_type": "none",
"url": "https://t.co/oZTXHMYEds",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjo4OTQ3MjE0OTg5MzM1ODM4NzI=",
"rest_id": "894721498933583872",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Aug 08 00:46:43 +0000 2017",
"default_profile": false,
"default_profile_image": false,
"description": "First #HACKER wrongfully sent to #PRISON in #URUGUAY, @darknetdiaries episode 25 - I changed the justice system of a country in Latin America. \uD83D\uDC4D VIEW MORE ▶️▶️",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "linktr.ee/adanielhill",
"expanded_url": "http://linktr.ee/adanielhill",
"url": "https://t.co/5nOhVd5qbv",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 175798,
"followers_count": 41388,
"friends_count": 12976,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 220,
"location": "https://AlbertoHill.com ",
"media_count": 13877,
"name": "Alberto Daniel Hill \uD83C\uDFF4‍\uD83C\uDFF4‍☠️",
"normal_followers_count": 41388,
"pinned_tweet_ids_str": [
"1129273610793869313"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/894721498933583872/1724763037",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1777527902789152768/kIRdTUef_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "ADanielHill",
"statuses_count": 83085,
"translator_type": "none",
"url": "https://t.co/5nOhVd5qbv",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1460745059335385088",
"professional_type": "Creator",
"category": [
{
"id": 983,
"name": "Technology-Security Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "bc1q8n63v5cqwlyy2chx49g3spp38x7z74fxh3gw88",
"ethereum_handle": "0x58740082784CA2571698359b1E067fA93181cb84",
"patreon_handle": "adanielhill"
}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjoxMjYxMzIyNzcyMzkyOTM5NTI2",
"rest_id": "1261322772392939526",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Fri May 15 15:49:45 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "The Dark Web Monitoring platform for business and enterprise. Managed Threat Intelligence services to detect darkweb & OSINT data-breach and theft. #NAFO Intel",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "sosintel.co.uk",
"expanded_url": "https://www.sosintel.co.uk",
"url": "https://t.co/2QN904Ge0X",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 32105,
"followers_count": 18706,
"friends_count": 2008,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 205,
"location": "London, England",
"media_count": 2919,
"name": "SOS Intelligence",
"normal_followers_count": 18706,
"pinned_tweet_ids_str": [
"1870555443782734271"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1261322772392939526/1611889720",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1579737739280400384/FFw0hd2-_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "SOSIntel",
"statuses_count": 13008,
"translator_type": "none",
"url": "https://t.co/2QN904Ge0X",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1484943751474786309",
"professional_type": "Business",
"category": [
{
"id": 713,
"name": "Science & Technology",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjoxMTEyMDkyODI5MDg4NjY1NjA1",
"rest_id": "1112092829088665605",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Sat Mar 30 20:42:46 +0000 2019",
"default_profile": false,
"default_profile_image": false,
"description": "ADHD https://t.co/bGQLcTTeB7\nElectrical Engineering drop-out(for now)\nFollow backs take forever :'(\n@PwnieLuver@infosec.exchange\n#snakoil salesman\n#lolzcrew member",
"entities": {
"description": {
"urls": [
{
"display_url": "youtu.be/jhcn1_qsYmg",
"expanded_url": "http://youtu.be/jhcn1_qsYmg",
"url": "https://t.co/bGQLcTTeB7",
"indices": [
5,
28
]
}
]
},
"url": {
"urls": [
{
"display_url": "pastebin.com/raw/VLkAciKN",
"expanded_url": "https://pastebin.com/raw/VLkAciKN",
"url": "https://t.co/bjuBzfqfyD",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 108034,
"followers_count": 1835,
"friends_count": 4956,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 22,
"location": "Texas",
"media_count": 5104,
"name": "Pwnie Luver \uD83C\uDDFA\uD83C\uDDE6Слава Україні\uD83C\uDDFA\uD83C\uDDE6",
"normal_followers_count": 1835,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1112092829088665605/1553985523",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1112418938187599872/h4TtRqFs_normal.png",
"profile_interstitial_type": "",
"screen_name": "PwnieLuver",
"statuses_count": 17458,
"translator_type": "none",
"url": "https://t.co/bjuBzfqfyD",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
],
"moderator_count": 9,
"member_count": 3289,
"role": "NonMember",
"rules": [
{
"rest_id": "1691546541914296514",
"name": "Respect your work NDA",
"description": "Honor your work's NDA: Do not share confidential or proprietary information."
},
{
"rest_id": "1691546576223629432",
"name": "Ethical",
"description": "All community activities and actions must be authorized and strictly adhere to ethical and legal standards."
},
{
"rest_id": "1691546884844728323",
"name": "Don't spread fake news",
"description": "Promote accurate information: Refrain from spreading false or misleading news."
},
{
"rest_id": "1691548085892067622",
"name": "Respectful Communication and Consideration",
"description": "Show respect for real-life commitments; refrain from DM spam. Patience in awaiting responses builds understanding and rapport."
},
{
"rest_id": "1691545767876395392",
"name": "Don't be a bully",
"description": "Respectful conduct is essential; bullying or disrespectful behavior will not be tolerated"
},
{
"rest_id": "1691547052281360573",
"name": "Invite everyone you like.",
"description": "Feel free to invite individuals who align with our community's purpose."
},
{
"rest_id": "1691548535202644038",
"name": "Memes",
"description": "Feel free to share lighthearted infosec humor, fostering a sense of community through laughter and relatable content."
},
{
"rest_id": "1691546681689391135",
"name": "No nudity",
"description": "Maintain professionalism: Refrain from posting explicit or nude content."
},
{
"rest_id": "1691548959712416041",
"name": "No annoyng Ads",
"description": "Refrain from sharing advertisements or affiliate content, maintaining a focus on meaningful discussions and knowledge exchange within the community."
},
{
"rest_id": "1511791508122476545",
"name": "More detailed rules to come"
}
],
"custom_banner_media": {
"media_info": {
"color_info": {
"palette": [
{
"rgb": {
"red": 53,
"green": 117,
"blue": 189
},
"percentage": 58.93
},
{
"rgb": {
"red": 254,
"green": 254,
"blue": 254
},
"percentage": 16.91
},
{
"rgb": {
"red": 107,
"green": 186,
"blue": 234
},
"percentage": 15.85
},
{
"rgb": {
"red": 22,
"green": 57,
"blue": 119
},
"percentage": 6.63
},
{
"rgb": {
"red": 147,
"green": 223,
"blue": 248
},
"percentage": 0.44
}
]
},
"original_img_url": "https://pbs.twimg.com/community_banner_img/1548793419425845248/Fzcu5CFG?format=jpg&name=orig",
"original_img_width": 968,
"original_img_height": 387,
"salient_rect": {
"left": 484,
"top": 193,
"width": 1,
"height": 1
}
}
},
"default_banner_media": {
"media_info": {
"color_info": {
"palette": [
{
"rgb": {
"red": 248,
"green": 82,
"blue": 109
},
"percentage": 71.09
},
{
"rgb": {
"red": 252,
"green": 142,
"blue": 188
},
"percentage": 16.36
},
{
"rgb": {
"red": 250,
"green": 120,
"blue": 126
},
"percentage": 6.51
},
{
"rgb": {
"red": 253,
"green": 175,
"blue": 201
},
"percentage": 3.4
},
{
"rgb": {
"red": 249,
"green": 95,
"blue": 137
},
"percentage": 2.08
}
]
},
"original_img_url": "https://pbs.twimg.com/media/FECQTD9VkAgZkxu.jpg",
"original_img_width": 1200,
"original_img_height": 480
}
},
"viewer_relationship": {
"moderation_state": {
"__typename": "CommunityUserDefaultModerationState"
}
},
"join_requests_result": {
"__typename": "CommunityJoinRequestsUnavailable"
}
}
}
},
"clientEventInfo": {
"component": "community_to_join",
"element": "community",
"details": {
"timelinesDetails": {
"injectionType": "CommunityToJoin"
}
}
}
}
},
{
"entryId": "community-to-join-1870749872412426247-community-1511383486912937986",
"item": {
"itemContent": {
"itemType": "TimelineCommunity",
"__typename": "TimelineCommunity",
"community_results": {
"result": {
"__typename": "Community",
"id_str": "1511383486912937986",
"name": "Infosec",
"created_at": 1649176878085,
"search_tags": [],
"is_nsfw": false,
"actions": {
"delete_action_result": {
"__typename": "CommunityDeleteActionUnavailable",
"reason": "Unavailable"
},
"join_action_result": {
"__typename": "CommunityJoinAction"
},
"leave_action_result": {
"__typename": "CommunityLeaveActionUnavailable",
"reason": "ViewerNotMember",
"message": "Not a member."
},
"pin_action_result": {
"__typename": "CommunityTweetPinActionUnavailable"
}
},
"admin_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyMDE0OTI2MTI=",
"rest_id": "201492612",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Mon Oct 11 23:53:17 +0000 2010",
"default_profile": false,
"default_profile_image": false,
"description": "came for #infosec got hooked bc of #shitposting & stayed for #threadzilla\uD83E\uDD8E ||\n\nshe/her in tech ||\n\uD83D\uDCDD=/ security ||\n\n work 4 \uD83C\uDDFA\uD83C\uDDF2 but tweets \uD83D\uDCAF me",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "its-a-lisa.com",
"expanded_url": "https://its-a-lisa.com",
"url": "https://t.co/uSt76QO6Xo",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 82301,
"followers_count": 9271,
"friends_count": 358,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 175,
"location": "Washington, DC",
"media_count": 1049,
"name": "Alyssa Bryant Feola",
"normal_followers_count": 9271,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/201492612/1521296000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1056167823934976001/LS_WtkBG_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "its_a_lisa",
"statuses_count": 20184,
"translator_type": "none",
"url": "https://t.co/uSt76QO6Xo",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"creator_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyMDE0OTI2MTI=",
"rest_id": "201492612",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Mon Oct 11 23:53:17 +0000 2010",
"default_profile": false,
"default_profile_image": false,
"description": "came for #infosec got hooked bc of #shitposting & stayed for #threadzilla\uD83E\uDD8E ||\n\nshe/her in tech ||\n\uD83D\uDCDD=/ security ||\n\n work 4 \uD83C\uDDFA\uD83C\uDDF2 but tweets \uD83D\uDCAF me",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "its-a-lisa.com",
"expanded_url": "https://its-a-lisa.com",
"url": "https://t.co/uSt76QO6Xo",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 82301,
"followers_count": 9271,
"friends_count": 358,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 175,
"location": "Washington, DC",
"media_count": 1049,
"name": "Alyssa Bryant Feola",
"normal_followers_count": 9271,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/201492612/1521296000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1056167823934976001/LS_WtkBG_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "its_a_lisa",
"statuses_count": 20184,
"translator_type": "none",
"url": "https://t.co/uSt76QO6Xo",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"invites_result": {
"__typename": "CommunityInvitesUnavailable",
"reason": "Unavailable",
"message": "Must be a member of the Community to invite others."
},
"join_policy": "Open",
"invites_policy": "MemberInvitesAllowed",
"is_pinned": false,
"members_facepile_results": [
{
"result": {
"__typename": "User",
"id": "VXNlcjoyMDE0OTI2MTI=",
"rest_id": "201492612",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Mon Oct 11 23:53:17 +0000 2010",
"default_profile": false,
"default_profile_image": false,
"description": "came for #infosec got hooked bc of #shitposting & stayed for #threadzilla\uD83E\uDD8E ||\n\nshe/her in tech ||\n\uD83D\uDCDD=/ security ||\n\n work 4 \uD83C\uDDFA\uD83C\uDDF2 but tweets \uD83D\uDCAF me",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "its-a-lisa.com",
"expanded_url": "https://its-a-lisa.com",
"url": "https://t.co/uSt76QO6Xo",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 82301,
"followers_count": 9271,
"friends_count": 358,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 175,
"location": "Washington, DC",
"media_count": 1049,
"name": "Alyssa Bryant Feola",
"normal_followers_count": 9271,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/201492612/1521296000",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1056167823934976001/LS_WtkBG_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "its_a_lisa",
"statuses_count": 20184,
"translator_type": "none",
"url": "https://t.co/uSt76QO6Xo",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjo5NDI5NDk5MDkxMjQzMDQ4OTY=",
"rest_id": "942949909124304896",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Dec 19 02:49:12 +0000 2017",
"default_profile": true,
"default_profile_image": false,
"description": "The 1st ever conference and podcast that solely focuses on OSINT & Social Engineering. We are also: https://t.co/fOPZ83Ox37",
"entities": {
"description": {
"urls": [
{
"display_url": "layer8podcast.org",
"expanded_url": "http://layer8podcast.org",
"url": "https://t.co/fOPZ83Ox37",
"indices": [
100,
123
]
}
]
},
"url": {
"urls": [
{
"display_url": "layer8conference.com",
"expanded_url": "https://layer8conference.com",
"url": "https://t.co/Y032xZqTKV",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 4260,
"followers_count": 5831,
"friends_count": 845,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 112,
"location": "Providence, RI",
"media_count": 985,
"name": "Layer 8 Con & Pod \uD83C\uDFB1",
"normal_followers_count": 5831,
"pinned_tweet_ids_str": [
"1521157567984066562"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/942949909124304896/1728903972",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1008004169611948033/X4Ob6FoL_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "Layer8Con",
"statuses_count": 11072,
"translator_type": "none",
"url": "https://t.co/Y032xZqTKV",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjo5NjY5NTQwMzUxMjIwOTQwODE=",
"rest_id": "966954035122094081",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Fri Feb 23 08:33:01 +0000 2018",
"default_profile": false,
"default_profile_image": false,
"description": "DC9111\nDCG Delhi, India \nBackup account - @dcg9111\nmail@defcon9111.org \uD83D\uDCE9\nHappy Hacking! \uD83D\uDCF6 \nPoC - @DotSlashTX",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "defcon9111.org/links",
"expanded_url": "https://defcon9111.org/links",
"url": "https://t.co/g7Qklu3gkS",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 1086,
"followers_count": 2110,
"friends_count": 188,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 7,
"location": "New Delhi, India",
"media_count": 161,
"name": "DEF CON Delhi Group",
"normal_followers_count": 2110,
"pinned_tweet_ids_str": [
"1783382449629827482"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/966954035122094081/1633758843",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1274639530180489217/dHXAFGFd_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "dc_9111",
"statuses_count": 553,
"translator_type": "none",
"url": "https://t.co/g7Qklu3gkS",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1477321447211106312",
"professional_type": "Creator",
"category": [
{
"id": 1009,
"name": "Community",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjoxMzMwNTQzMzc1",
"rest_id": "1330543375",
"affiliates_highlighted_label": {},
"has_graduated_access": false,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Sat Apr 06 02:44:28 +0000 2013",
"default_profile": true,
"default_profile_image": false,
"description": "The Radio Frequency Village Team from all your favorite hacker cons. Discord link on our website.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "rfhackers.com",
"expanded_url": "https://rfhackers.com",
"url": "https://t.co/IBQX2VrqIr",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 547,
"followers_count": 10201,
"friends_count": 155,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 165,
"location": "Online all the time",
"media_count": 70,
"name": "RF Hackers Sanctuary",
"normal_followers_count": 10201,
"pinned_tweet_ids_str": [
"1033520277886590977"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1330543375/1534354264",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1316216901584982016/fOBaysFK_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "rfhackers",
"statuses_count": 4136,
"translator_type": "none",
"url": "https://t.co/IBQX2VrqIr",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjoxMDQxNjk3MjgzNTM0Nzc0Mjcy",
"rest_id": "1041697283534774272",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Mon Sep 17 14:36:01 +0000 2018",
"default_profile": false,
"default_profile_image": false,
"description": "Data Privacy and Protection. Cybersecurity. GRC\n\nhttps://t.co/5GlEKArHgO",
"entities": {
"description": {
"urls": [
{
"display_url": "cyberin.africa",
"expanded_url": "http://cyberin.africa",
"url": "https://t.co/5GlEKArHgO",
"indices": [
49,
72
]
}
]
},
"url": {
"urls": [
{
"display_url": "cyberin.africa",
"expanded_url": "http://cyberin.africa",
"url": "https://t.co/5GlEKArHgO",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 7238,
"followers_count": 7434,
"friends_count": 4083,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 64,
"location": "Africa",
"media_count": 817,
"name": "Cybersecurity in Africa",
"normal_followers_count": 7434,
"pinned_tweet_ids_str": [
"1731977507954409667"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1041697283534774272/1653904247",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1197107495908659200/GqcjCGG5_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "CyberInAfrica",
"statuses_count": 7925,
"translator_type": "none",
"url": "https://t.co/5GlEKArHgO",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1531211240793587713",
"professional_type": "Business",
"category": [
{
"id": 713,
"name": "Science & Technology",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
}
],
"moderator_count": 13,
"member_count": 9125,
"role": "NonMember",
"rules": [
{
"rest_id": "1546155111818399751",
"name": "Be kind and respectful.",
"description": "A place for open chat. Insulting, harassing or gatekeeping others is unacceptable. We want this place to be a safe & productive place for all."
},
{
"rest_id": "1546156512279674881",
"name": "Violations",
"description": "We reserve the right to respond to harassment in the manner we deem appropriate, including but not limited to educational messages, warnings or temp & perm ban."
},
{
"rest_id": "1546155485287616516",
"name": "See something, say something.",
"description": "Anyone can report harassment. If you are being harassed, notice that someone else is being harassed, or have any other concerns, you can report to a mod."
}
],
"custom_banner_media": {
"media_info": {
"color_info": {
"palette": [
{
"rgb": {
"red": 164,
"green": 164,
"blue": 164
},
"percentage": 66.31
},
{
"rgb": {
"red": 47,
"green": 47,
"blue": 47
},
"percentage": 21.38
}
]
},
"original_img_url": "https://pbs.twimg.com/community_banner_img/1513144535819460619/lfR6rOYy?format=jpg&name=orig",
"original_img_width": 1500,
"original_img_height": 600,
"salient_rect": {
"left": 750,
"top": 300,
"width": 1,
"height": 1
}
}
},
"default_banner_media": {
"media_info": {
"color_info": {
"palette": [
{
"rgb": {
"red": 248,
"green": 82,
"blue": 109
},
"percentage": 71.09
},
{
"rgb": {
"red": 252,
"green": 142,
"blue": 188
},
"percentage": 16.36
},
{
"rgb": {
"red": 250,
"green": 120,
"blue": 126
},
"percentage": 6.51
},
{
"rgb": {
"red": 253,
"green": 175,
"blue": 201
},
"percentage": 3.4
},
{
"rgb": {
"red": 249,
"green": 95,
"blue": 137
},
"percentage": 2.08
}
]
},
"original_img_url": "https://pbs.twimg.com/media/FECQTD9VkAgZkxu.jpg",
"original_img_width": 1200,
"original_img_height": 480
}
},
"viewer_relationship": {
"moderation_state": {
"__typename": "CommunityUserDefaultModerationState"
}
},
"join_requests_result": {
"__typename": "CommunityJoinRequestsUnavailable"
}
}
}
},
"clientEventInfo": {
"component": "community_to_join",
"element": "community",
"details": {
"timelinesDetails": {
"injectionType": "CommunityToJoin"
}
}
}
}
},
{
"entryId": "community-to-join-1870749872412426247-community-1513871293761921025",
"item": {
"itemContent": {
"itemType": "TimelineCommunity",
"__typename": "TimelineCommunity",
"community_results": {
"result": {
"__typename": "Community",
"id_str": "1513871293761921025",
"name": "AWS Security",
"description": "Security discussion revolving around AWS Cloud specifically",
"created_at": 1649770017460,
"search_tags": [],
"is_nsfw": false,
"actions": {
"delete_action_result": {
"__typename": "CommunityDeleteActionUnavailable",
"reason": "Unavailable"
},
"join_action_result": {
"__typename": "CommunityJoinAction"
},
"leave_action_result": {
"__typename": "CommunityLeaveActionUnavailable",
"reason": "ViewerNotMember",
"message": "Not a member."
},
"pin_action_result": {
"__typename": "CommunityTweetPinActionUnavailable"
}
},
"admin_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNDM0Nzc5MA==",
"rest_id": "14347790",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Thu Apr 10 02:33:12 +0000 2008",
"default_profile": false,
"default_profile_image": false,
"description": "AWS SA Pro | Security @trek10inc | CISSP/CCSP - Mastodon: theomegabit@infosec.exchange | Threads: @theomegabit",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "twitter.com/i/communities/…",
"expanded_url": "https://twitter.com/i/communities/1513871293761921025",
"url": "https://t.co/26fLEmqRLS",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 17343,
"followers_count": 2995,
"friends_count": 1063,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 182,
"location": "us-east-2",
"media_count": 581,
"name": "Mike",
"normal_followers_count": 2995,
"pinned_tweet_ids_str": [
"1678375454196080648"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/14347790/1649858311",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1695495254500098049/iLOSEK_S_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "theomegabit",
"statuses_count": 5543,
"translator_type": "none",
"url": "https://t.co/26fLEmqRLS",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1458186671007141900",
"professional_type": "Creator",
"category": [
{
"id": 984,
"name": "Cloud Services & Solutions",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
"creator_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNDM0Nzc5MA==",
"rest_id": "14347790",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Thu Apr 10 02:33:12 +0000 2008",
"default_profile": false,
"default_profile_image": false,
"description": "AWS SA Pro | Security @trek10inc | CISSP/CCSP - Mastodon: theomegabit@infosec.exchange | Threads: @theomegabit",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "twitter.com/i/communities/…",
"expanded_url": "https://twitter.com/i/communities/1513871293761921025",
"url": "https://t.co/26fLEmqRLS",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 17343,
"followers_count": 2995,
"friends_count": 1063,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 182,
"location": "us-east-2",
"media_count": 581,
"name": "Mike",
"normal_followers_count": 2995,
"pinned_tweet_ids_str": [
"1678375454196080648"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/14347790/1649858311",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1695495254500098049/iLOSEK_S_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "theomegabit",
"statuses_count": 5543,
"translator_type": "none",
"url": "https://t.co/26fLEmqRLS",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1458186671007141900",
"professional_type": "Creator",
"category": [
{
"id": 984,
"name": "Cloud Services & Solutions",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
"invites_result": {
"__typename": "CommunityInvitesUnavailable",
"reason": "Unavailable",
"message": "Must be a member of the Community to invite others."
},
"join_policy": "Open",
"invites_policy": "MemberInvitesAllowed",
"is_pinned": false,
"members_facepile_results": [
{
"result": {
"__typename": "User",
"id": "VXNlcjoxNDM0Nzc5MA==",
"rest_id": "14347790",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Thu Apr 10 02:33:12 +0000 2008",
"default_profile": false,
"default_profile_image": false,
"description": "AWS SA Pro | Security @trek10inc | CISSP/CCSP - Mastodon: theomegabit@infosec.exchange | Threads: @theomegabit",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "twitter.com/i/communities/…",
"expanded_url": "https://twitter.com/i/communities/1513871293761921025",
"url": "https://t.co/26fLEmqRLS",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 17343,
"followers_count": 2995,
"friends_count": 1063,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 182,
"location": "us-east-2",
"media_count": 581,
"name": "Mike",
"normal_followers_count": 2995,
"pinned_tweet_ids_str": [
"1678375454196080648"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/14347790/1649858311",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1695495254500098049/iLOSEK_S_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "theomegabit",
"statuses_count": 5543,
"translator_type": "none",
"url": "https://t.co/26fLEmqRLS",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1458186671007141900",
"professional_type": "Creator",
"category": [
{
"id": 984,
"name": "Cloud Services & Solutions",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjo5MjEyMjY5MzM3OTAxNjI5NDQ=",
"rest_id": "921226933790162944",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": false,
"created_at": "Fri Oct 20 04:09:51 +0000 2017",
"default_profile": false,
"default_profile_image": false,
"description": "Senior Cloud Architect @trek10inc, Serverless Native, Automation/DevOps, Multi Account Setups",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "barney.dev",
"expanded_url": "http://barney.dev",
"url": "https://t.co/5KoI3kZ5Tp",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 7554,
"followers_count": 228,
"friends_count": 804,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 5,
"location": "South Bend, IN",
"media_count": 56,
"name": "Michael Barney Jr",
"normal_followers_count": 228,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/921226933790162944/1508474131",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1578193371277000705/B-gkdmCd_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "mbarneyjr",
"statuses_count": 493,
"translator_type": "none",
"url": "https://t.co/5KoI3kZ5Tp",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjoyMjYxNjQ0OTA=",
"rest_id": "226164490",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Mon Dec 13 13:48:53 +0000 2010",
"default_profile": false,
"default_profile_image": false,
"description": "Making happy little clouds",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "phrak.dev",
"expanded_url": "http://phrak.dev",
"url": "https://t.co/dzUuZQ4QBk",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 845,
"followers_count": 82,
"friends_count": 164,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 0,
"location": "Indianapolis, IN",
"media_count": 13,
"name": "R.James",
"normal_followers_count": 82,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/226164490/1673572371",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1444363702753538048/uPn6U4LJ_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "solenberg",
"statuses_count": 784,
"translator_type": "none",
"url": "https://t.co/dzUuZQ4QBk",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjo0OTkxMjY4OA==",
"rest_id": "49912688",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Jun 23 07:10:27 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "Tweets on Life, Infrastructure. Enjoys Anime, Comics, Music, Books and TV Tweets on #KTBFFH #CSK #PS5 at @_dforce_sport.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "giri.im",
"expanded_url": "https://giri.im",
"url": "https://t.co/X76chgxkCL",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 130446,
"followers_count": 1234,
"friends_count": 5238,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 22,
"location": "",
"media_count": 594,
"name": "g",
"normal_followers_count": 1234,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1552146148277747712/Pfbh8YFq_normal.png",
"profile_interstitial_type": "",
"screen_name": "_dforce",
"statuses_count": 44243,
"translator_type": "none",
"url": "https://t.co/X76chgxkCL",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {
"is_enabled": false
}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjoxODE0NjgzNw==",
"rest_id": "18146837",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": false,
"created_at": "Mon Dec 15 21:11:45 +0000 2008",
"default_profile": false,
"default_profile_image": false,
"description": "Dad, Muslim, Coder, Hacker. Mostly jvm, beam and haskell.",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 4533,
"followers_count": 621,
"friends_count": 709,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 26,
"location": "Paris - France",
"media_count": 284,
"name": "s0f \uD83C\uDFF4‍☠️",
"normal_followers_count": 621,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/18146837/1668365905",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/788098960653164545/gDttQQjL_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "mks0ff",
"statuses_count": 10205,
"translator_type": "none",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
],
"moderator_count": 1,
"member_count": 3136,
"role": "NonMember",
"rules": [
{
"rest_id": "1513871293858340878",
"name": "Be kind and respectful."
},
{
"rest_id": "1513871293858422794",
"name": "Keep Tweets on topic."
},
{
"rest_id": "1513871293858390033",
"name": "Explore and share."
}
],
"custom_banner_media": {
"media_info": {
"color_info": {
"palette": [
{
"rgb": {
"red": 15,
"green": 23,
"blue": 62
},
"percentage": 71.4
},
{
"rgb": {
"red": 7,
"green": 9,
"blue": 31
},
"percentage": 10.23
},
{
"rgb": {
"red": 30,
"green": 47,
"blue": 118
},
"percentage": 9.57
},
{
"rgb": {
"red": 75,
"green": 116,
"blue": 169
},
"percentage": 3.11
},
{
"rgb": {
"red": 17,
"green": 24,
"blue": 79
},
"percentage": 2.62
}
]
},
"original_img_url": "https://pbs.twimg.com/community_banner_img/1513872038284435474/tn37O5GH?format=jpg&name=orig",
"original_img_width": 1279,
"original_img_height": 511,
"salient_rect": {
"left": 640,
"top": 255,
"width": 1,
"height": 1
}
}
},
"default_banner_media": {
"media_info": {
"color_info": {
"palette": [
{
"rgb": {
"red": 118,
"green": 83,
"blue": 214
},
"percentage": 68.0
},
{
"rgb": {
"red": 250,
"green": 104,
"blue": 170
},
"percentage": 12.59
},
{
"rgb": {
"red": 152,
"green": 120,
"blue": 222
},
"percentage": 8.15
},
{
"rgb": {
"red": 83,
"green": 50,
"blue": 202
},
"percentage": 3.28
},
{
"rgb": {
"red": 176,
"green": 86,
"blue": 187
},
"percentage": 2.86
}
]
},
"original_img_url": "https://pbs.twimg.com/media/FECQMglVIAQBwV5.jpg",
"original_img_width": 1200,
"original_img_height": 480
}
},
"viewer_relationship": {
"moderation_state": {
"__typename": "CommunityUserDefaultModerationState"
}
},
"join_requests_result": {
"__typename": "CommunityJoinRequestsUnavailable"
}
}
}
},
"clientEventInfo": {
"component": "community_to_join",
"element": "community",
"details": {
"timelinesDetails": {
"injectionType": "CommunityToJoin"
}
}
}
}
}
],
"displayType": "Carousel",
"header": {
"displayType": "Classic",
"text": "Discover new Communities",
"sticky": false
},
"footer": {
"displayType": "Classic",
"text": "Show more",
"landingUrl": {
"url": "https://twitter.com/i/communities/suggested",
"urlType": "ExternalUrl"
}
},
"clientEventInfo": {
"component": "community_to_join",
"details": {
"timelinesDetails": {
"injectionType": "CommunityToJoin"
}
}
},
"feedbackInfo": {
"feedbackKeys": [
"1091350595"
]
}
}
},
{
"entryId": "promoted-tweet-1870437825901957436-36c019279c65e74d",
"sortIndex": "1870749872412426232",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870437825901957436",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjU2MjA4MTE1ODAzNzcwODgw",
"rest_id": "1656208115803770880",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed May 10 08:03:23 +0000 2023",
"default_profile": true,
"default_profile_image": false,
"description": "\uD83D\uDC63 Engineered for walking | \uD83D\uDC5F Comfy & versatile footwear for life's adventures | \uD83C\uDF3F Breathable, lightweight designs",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "canles.com",
"expanded_url": "https://canles.com/",
"url": "https://t.co/0PzMFBdQm0",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 88,
"followers_count": 10426,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 108,
"location": "Vancouver, Canada",
"media_count": 411,
"name": "Canles",
"normal_followers_count": 10426,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1656208115803770880/1726482256",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1666678663084150784/41oyvaiH_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "canlesofficial",
"statuses_count": 1330,
"translator_type": "none",
"url": "https://t.co/0PzMFBdQm0",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1656211729993572352",
"professional_type": "Business",
"category": [
{
"id": 727,
"name": "Shopping & Retail",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
}
},
"card": {
"rest_id": "card://1870437819346202624",
"legacy": {
"binding_values": [
{
"key": "unified_card",
"value": {
"string_value": "{\"type\":\"image_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"See What People Are Saying \\uD83D\\uDDE3\\uFE0F\",\"is_rtl\":false},\"subtitle\":{\"content\":\"canles.com\",\"is_rtl\":false},\"destination\":\"browser_1\"}},\"media_1\":{\"type\":\"media\",\"data\":{\"id\":\"3_1870437345029222403\",\"destination\":\"browser_1\"}}},\"destination_objects\":{\"browser_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://rd.canles.com/6683dfe956bf320001f60d9f?sub9=Twitter&utm_source=Twitter&utm_medium=cpc&utm_content=img.au.kristina.earthtreks.general.23.07.24&sub3=mi60k&sub4=tgdrp&sub5=aky47u&sub7=1870437819346202624&sub6=en.au.earthtreks.amc.7dc.campaign.10&sub8=img.au.earthtreks.25%2B.desktop.general.adset.1\",\"vanity\":\"canles.com\"}}}},\"components\":[\"media_1\",\"details_1\"],\"media_entities\":{\"3_1870437345029222403\":{\"id\":1870437345029222403,\"id_str\":\"1870437345029222403\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GfUg2vUXcAMMOFv.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":1200,\"height\":1200,\"focus_rects\":[{\"x\":0,\"y\":234,\"h\":672,\"w\":1200},{\"x\":0,\"y\":0,\"h\":1200,\"w\":1200},{\"x\":0,\"y\":0,\"h\":1200,\"w\":1053},{\"x\":0,\"y\":0,\"h\":1200,\"w\":600},{\"x\":0,\"y\":0,\"h\":1200,\"w\":1200}]},\"sizes\":{\"large\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"}},\"source_user_id\":1656208115803770880,\"source_user_id_str\":\"1656208115803770880\",\"media_key\":\"3_1870437345029222403\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":101,\"green\":168,\"blue\":0},\"percentage\":39.92},{\"rgb\":{\"red\":26,\"green\":47,\"blue\":4},\"percentage\":24.71},{\"rgb\":{\"red\":215,\"green\":215,\"blue\":213},\"percentage\":20.27},{\"rgb\":{\"red\":66,\"green\":118,\"blue\":0},\"percentage\":8.73},{\"rgb\":{\"red\":161,\"green\":215,\"blue\":0},\"percentage\":2.53}]}},\"ttl\":-1}}}}}",
"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://1870437819346202624",
"user_refs_results": []
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870437825901957436"
],
"editable_until_msecs": "1734785703000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "6940",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://smartecom.io\" rel=\"nofollow\">SEL_Ad_Manager</a>",
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Sat Dec 21 11:55:03 +0000 2024",
"conversation_id_str": "1870437825901957436",
"display_text_range": [
0,
255
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 8,
"favorited": false,
"full_text": "Feel the Difference, Naturally: Barefoot shoes unlock a unique sensory experience, one traditional shoes can't replicate. You'll feel the ground beneath your feet like never before, improving your balance and body awareness.\n\n\uD83D\uDC63 Join the Barefoot Movement!",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 0,
"retweet_count": 0,
"retweeted": false,
"scopes": {
"followers": false
},
"user_id_str": "1656208115803770880",
"id_str": "1870437825901957436"
}
}
},
"tweetDisplayType": "Tweet",
"promotedMetadata": {
"advertiser_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjU2MjA4MTE1ODAzNzcwODgw",
"rest_id": "1656208115803770880",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed May 10 08:03:23 +0000 2023",
"default_profile": true,
"default_profile_image": false,
"description": "\uD83D\uDC63 Engineered for walking | \uD83D\uDC5F Comfy & versatile footwear for life's adventures | \uD83C\uDF3F Breathable, lightweight designs",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "canles.com",
"expanded_url": "https://canles.com/",
"url": "https://t.co/0PzMFBdQm0",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 88,
"followers_count": 10426,
"friends_count": 1,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 108,
"location": "Vancouver, Canada",
"media_count": 411,
"name": "Canles",
"normal_followers_count": 10426,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1656208115803770880/1726482256",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1666678663084150784/41oyvaiH_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "canlesofficial",
"statuses_count": 1330,
"translator_type": "none",
"url": "https://t.co/0PzMFBdQm0",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1656211729993572352",
"professional_type": "Business",
"category": [
{
"id": 727,
"name": "Shopping & Retail",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
"adMetadataContainer": {
"renderLegacyWebsiteCard": false
},
"disclosureType": "NoDisclosure",
"experimentValues": [
{
"key": "nsfa_htl_experiment_enable",
"value": "10000"
},
{
"key": "nsfa_htl_experimental_threshold_profanity",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_binary",
"value": "1.0"
},
{
"key": "min_gap_for_nsfw_avoidance",
"value": "1"
},
{
"key": "nsfa_htl_experimental_threshold_drugs",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_hate_violence",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_sexual",
"value": "1.0"
},
{
"key": "website_card_variation",
"value": "0"
}
],
"impressionId": "36c019279c65e74d",
"impressionString": "36c019279c65e74d",
"clickTrackingInfo": {
"urlParams": [
{
"key": "twclid",
"value": "2-1mg87ar7cuycjo70nke7md13q"
}
]
}
}
},
"clientEventInfo": {
"component": "for_you_promoted",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPromoted",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkVibj0EArLIAAAAAA="
}
}
}
}
},
{
"entryId": "tweet-1870573893372739651",
"sortIndex": "1870749872412426231",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870573893372739651",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyODQzMzM5ODg=",
"rest_id": "284333988",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"notifications": true,
"following": true,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Apr 19 03:00:17 +0000 2011",
"default_profile": false,
"default_profile_image": false,
"description": "Lead product for @Google AI Studio, working on the Gemini API, and AGI, my views!",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "logank.ai",
"expanded_url": "https://logank.ai",
"url": "https://t.co/p6F6wFrh36",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 147790,
"followers_count": 129288,
"friends_count": 1961,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 2372,
"location": "Lkilpatrick@google.com",
"media_count": 394,
"name": "Logan Kilpatrick",
"normal_followers_count": 129288,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/284333988/1708698598",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1379817647139737600/YHL9uBk0_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "OfficialLoganK",
"statuses_count": 6907,
"translator_type": "none",
"url": "https://t.co/p6F6wFrh36",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1458525485562949637",
"professional_type": "Creator",
"category": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870573893372739651"
],
"editable_until_msecs": "1734818144000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "201054",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"legacy": {
"bookmark_count": 256,
"bookmarked": false,
"created_at": "Sat Dec 21 20:55:44 +0000 2024",
"conversation_id_str": "1870573893372739651",
"display_text_range": [
0,
30
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 3021,
"favorited": false,
"full_text": "You should still learn to code",
"is_quote_status": false,
"lang": "en",
"quote_count": 66,
"reply_count": 254,
"retweet_count": 238,
"retweeted": false,
"user_id_str": "284333988",
"id_str": "1870573893372739651"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"1421475091"
]
},
"clientEventInfo": {
"component": "for_you_in_network",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouInNetwork",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAACQ8ADAMAAAAZAQACAkIAAAAAIAEAAAAAgAIAAAAAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "tweet-1870573469173530798",
"sortIndex": "1870749872412426230",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870573469173530798",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozNTQzMjY0Mw==",
"rest_id": "35432643",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sun Apr 26 08:40:11 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "Engineering leader, @GoogleChrome • Author • Great user & developer experiences • @ChromiumDev @ChromeDevTools • @GoogleDevs",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "addyosmani.com",
"expanded_url": "https://addyosmani.com",
"url": "https://t.co/lkntLS9g24",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 24646,
"followers_count": 345187,
"friends_count": 2180,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 7695,
"location": "Mountain View, CA",
"media_count": 2208,
"name": "Addy Osmani",
"normal_followers_count": 345187,
"pinned_tweet_ids_str": [
"1739052802314539371"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/35432643/1539971599",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1756796861145624576/bju69TbM_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "addyosmani",
"statuses_count": 26890,
"translator_type": "regular",
"url": "https://t.co/lkntLS9g24",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1456502530003783680",
"professional_type": "Creator",
"category": [
{
"id": 713,
"name": "Science & Technology",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true
}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870573469173530798"
],
"editable_until_msecs": "1734818043000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "96774",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 1661,
"bookmarked": false,
"created_at": "Sat Dec 21 20:54:03 +0000 2024",
"conversation_id_str": "1870573469173530798",
"display_text_range": [
0,
151
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/fKAIbR5ppw",
"expanded_url": "https://x.com/addyosmani/status/1870573469173530798/video/1",
"id_str": "1870572402725593089",
"indices": [
152,
175
],
"media_key": "7_1870572402725593089",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1870572402725593089/pu/img/0P66hK6w0D7-_eiZ.jpg",
"type": "video",
"url": "https://t.co/fKAIbR5ppw",
"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": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 21666,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/1870572402725593089/pu/pl/pT1sGMBsjiphGcr1.m3u8?tag=12&v=cfc"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870572402725593089/pu/vid/avc1/480x270/3pV8OyfV3Cz2Ftfd.mp4?tag=12"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870572402725593089/pu/vid/avc1/640x360/TJFE8b6sUwcXpFrz.mp4?tag=12"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870572402725593089/pu/vid/avc1/1280x720/Cv7loW6PJ2om_sQ8.mp4?tag=12"
}
]
},
"media_results": {
"result": {
"media_key": "7_1870572402725593089"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/fKAIbR5ppw",
"expanded_url": "https://x.com/addyosmani/status/1870573469173530798/video/1",
"id_str": "1870572402725593089",
"indices": [
152,
175
],
"media_key": "7_1870572402725593089",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1870572402725593089/pu/img/0P66hK6w0D7-_eiZ.jpg",
"type": "video",
"url": "https://t.co/fKAIbR5ppw",
"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": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 21666,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/1870572402725593089/pu/pl/pT1sGMBsjiphGcr1.m3u8?tag=12&v=cfc"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870572402725593089/pu/vid/avc1/480x270/3pV8OyfV3Cz2Ftfd.mp4?tag=12"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870572402725593089/pu/vid/avc1/640x360/TJFE8b6sUwcXpFrz.mp4?tag=12"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870572402725593089/pu/vid/avc1/1280x720/Cv7loW6PJ2om_sQ8.mp4?tag=12"
}
]
},
"media_results": {
"result": {
"media_key": "7_1870572402725593089"
}
}
}
]
},
"favorite_count": 1243,
"favorited": false,
"full_text": "Quickly turn a GitHub repository into text for LLMs with Gitingest ⚡️ Replace \"hub\" with \"ingest\" in any GitHub URL for a text version of the codebase. https://t.co/fKAIbR5ppw",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 9,
"reply_count": 32,
"retweet_count": 127,
"retweeted": false,
"user_id_str": "35432643",
"id_str": "1870573469173530798"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-981581136"
]
},
"clientEventInfo": {
"component": "for_you_simclusters",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouSimclusters",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAEAAEAAgAAoACRWJuPQQCssgCAALAAAACg8ADAMAAAAZAQACAkIAAAAAIAAQAEAAgAoAAAEAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "tweet-1870401456290832684",
"sortIndex": "1870749872412426229",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870401456290832684",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozOTgwNzM1NTkw",
"rest_id": "3980735590",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"followed_by": true,
"notifications": true,
"following": true,
"can_dm": true,
"can_media_tag": false,
"created_at": "Sat Oct 17 16:21:57 +0000 2015",
"default_profile": false,
"default_profile_image": false,
"description": "Reporting AI nonsense. A future news media, driven by virtual assistants \uD83E\uDD16",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "linktr.ee/testingcatalog",
"expanded_url": "https://linktr.ee/testingcatalog",
"url": "https://t.co/CxHJ5xSio7",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 43471,
"followers_count": 13128,
"friends_count": 998,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 279,
"location": "Berlin, Germany",
"media_count": 5488,
"name": "TestingCatalog News \uD83D\uDDDE",
"normal_followers_count": 13128,
"pinned_tweet_ids_str": [
"1870155183025471855"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/3980735590/1731778741",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1732184836360568832/12P5amKA_normal.png",
"profile_interstitial_type": "",
"screen_name": "testingcatalog",
"statuses_count": 15938,
"translator_type": "none",
"url": "https://t.co/CxHJ5xSio7",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1462149641328373767",
"professional_type": "Creator",
"category": [
{
"id": 580,
"name": "Media & News Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "bc1qjfqavxg543ffqqqsas7hy7dukhl5rf5fk3044a",
"ethereum_handle": "0xC2F463b1Cd6b84f8213E552B08eA2fD175b02913",
"patreon_handle": ""
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870401456290832684"
],
"editable_until_msecs": "1734777032000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "5081",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"legacy": {
"bookmark_count": 8,
"bookmarked": false,
"created_at": "Sat Dec 21 09:30:32 +0000 2024",
"conversation_id_str": "1870401456290832684",
"display_text_range": [
0,
63
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/eymnIqFsII",
"expanded_url": "https://x.com/testingcatalog/status/1870401456290832684/photo/1",
"id_str": "1870401437710065664",
"indices": [
64,
87
],
"media_key": "3_1870401437710065664",
"media_url_https": "https://pbs.twimg.com/media/GfUAMqIWoAA5rai.jpg",
"type": "photo",
"url": "https://t.co/eymnIqFsII",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1277,
"w": 1290,
"resize": "fit"
},
"medium": {
"h": 1188,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 673,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1277,
"width": 1290,
"focus_rects": [
{
"x": 0,
"y": 315,
"w": 1290,
"h": 722
},
{
"x": 0,
"y": 0,
"w": 1277,
"h": 1277
},
{
"x": 0,
"y": 0,
"w": 1120,
"h": 1277
},
{
"x": 0,
"y": 0,
"w": 639,
"h": 1277
},
{
"x": 0,
"y": 0,
"w": 1290,
"h": 1277
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870401437710065664"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/eymnIqFsII",
"expanded_url": "https://x.com/testingcatalog/status/1870401456290832684/photo/1",
"id_str": "1870401437710065664",
"indices": [
64,
87
],
"media_key": "3_1870401437710065664",
"media_url_https": "https://pbs.twimg.com/media/GfUAMqIWoAA5rai.jpg",
"type": "photo",
"url": "https://t.co/eymnIqFsII",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1277,
"w": 1290,
"resize": "fit"
},
"medium": {
"h": 1188,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 673,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1277,
"width": 1290,
"focus_rects": [
{
"x": 0,
"y": 315,
"w": 1290,
"h": 722
},
{
"x": 0,
"y": 0,
"w": 1277,
"h": 1277
},
{
"x": 0,
"y": 0,
"w": 1120,
"h": 1277
},
{
"x": 0,
"y": 0,
"w": 639,
"h": 1277
},
{
"x": 0,
"y": 0,
"w": 1290,
"h": 1277
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870401437710065664"
}
}
}
]
},
"favorite_count": 65,
"favorited": false,
"full_text": "Grok profile analysis is becoming available on iOS \uD83D\uDC40\n\nTest it ! https://t.co/eymnIqFsII",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 1,
"reply_count": 5,
"retweet_count": 5,
"retweeted": false,
"user_id_str": "3980735590",
"id_str": "1870401456290832684"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"1845992757"
]
},
"clientEventInfo": {
"component": "for_you_in_network",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouInNetwork",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAACw8ADAMAAAAaAQACAkIAAAAAIAEAAAAAgAAAAAAAAAAAgBAKAA7oPNp8HQVJRAoAELdnAt38ZkPVAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1870612246457631193",
"sortIndex": "1870749872412426228",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870612246457631193",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozMzgzNjYyOQ==",
"rest_id": "33836629",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"notifications": true,
"following": true,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Apr 21 06:49:15 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "Building @EurekaLabsAI. Previously Director of AI @ Tesla, founding team @ OpenAI, CS231n/PhD @ Stanford. I like to train large deep neural nets \uD83E\uDDE0\uD83E\uDD16\uD83D\uDCA5",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "karpathy.ai",
"expanded_url": "https://karpathy.ai",
"url": "https://t.co/0EcFthjJXM",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 15432,
"followers_count": 1113077,
"friends_count": 951,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 14147,
"location": "Stanford",
"media_count": 759,
"name": "Andrej Karpathy",
"normal_followers_count": 1113077,
"pinned_tweet_ids_str": [
"1617979122625712128"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/33836629/1407117611",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1296667294148382721/9Pr6XrPB_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "karpathy",
"statuses_count": 9244,
"translator_type": "none",
"url": "https://t.co/0EcFthjJXM",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870612246457631193"
],
"editable_until_msecs": "1734827288000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "129453",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"legacy": {
"bookmark_count": 272,
"bookmarked": false,
"created_at": "Sat Dec 21 23:28:08 +0000 2024",
"conversation_id_str": "1870612246457631193",
"display_text_range": [
0,
73
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 936,
"favorited": false,
"full_text": "Are there good prediction markets for AI? Eg is metaculus the leading one",
"is_quote_status": false,
"lang": "en",
"quote_count": 5,
"reply_count": 86,
"retweet_count": 52,
"retweeted": false,
"user_id_str": "33836629",
"id_str": "1870612246457631193"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-184578567"
]
},
"clientEventInfo": {
"component": "for_you_in_network",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouInNetwork",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAADA8ADAMAAAAZAQACAkIAAAAAIAEAAAAAgAIAAAAAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "promoted-tweet-1863869339180339279-36c015f2dd1846c2",
"sortIndex": "1870749872412426227",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1863869339180339279",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzMwODczODUyODE4MzEzMjI3",
"rest_id": "1330873852818313227",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Mon Nov 23 14:00:37 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "The leading bug bounty platform for blockchain with the world's largest bug bounties. More than $110m paid out to whitehats and $180m in rewards available.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "immunefi.com",
"expanded_url": "https://immunefi.com",
"url": "https://t.co/Y6aJULx0hv",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3796,
"followers_count": 49563,
"friends_count": 689,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 563,
"location": "Launch your bug bounty →",
"media_count": 1414,
"name": "Immunefi",
"normal_followers_count": 49563,
"pinned_tweet_ids_str": [
"1870130667549229279"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1330873852818313227/1733151869",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1863600122057105408/Zpmq8l5A_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "immunefi",
"statuses_count": 6734,
"translator_type": "none",
"url": "https://t.co/Y6aJULx0hv",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"card": {
"rest_id": "https://t.co/f8PxULKpxQ",
"legacy": {
"binding_values": [
{
"key": "photo_image_full_size_large",
"value": {
"image_value": {
"height": 419,
"width": 800,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=jpg&name=800x419"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image",
"value": {
"image_value": {
"height": 147,
"width": 280,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=jpg&name=280x150"
},
"type": "IMAGE"
}
},
{
"key": "description",
"value": {
"string_value": "Find bugs and vulnerabilities on Ion Protocol and get paid up to $250,000.",
"type": "STRING"
}
},
{
"key": "domain",
"value": {
"string_value": "immunefi.com",
"type": "STRING"
}
},
{
"key": "thumbnail_image_large",
"value": {
"image_value": {
"height": 315,
"width": 600,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=jpg&name=600x600"
},
"type": "IMAGE"
}
},
{
"key": "summary_photo_image_small",
"value": {
"image_value": {
"height": 202,
"width": 386,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=jpg&name=386x202"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image_original",
"value": {
"image_value": {
"height": 630,
"width": 1200,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=jpg&name=orig"
},
"type": "IMAGE"
}
},
{
"key": "site",
"value": {
"scribe_key": "publisher_id",
"type": "USER",
"user_value": {
"id_str": "1330873852818313227",
"path": []
}
}
},
{
"key": "photo_image_full_size_small",
"value": {
"image_value": {
"height": 202,
"width": 386,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=jpg&name=386x202"
},
"type": "IMAGE"
}
},
{
"key": "summary_photo_image_large",
"value": {
"image_value": {
"height": 419,
"width": 800,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=jpg&name=800x419"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image_small",
"value": {
"image_value": {
"height": 76,
"width": 144,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=jpg&name=144x144"
},
"type": "IMAGE"
}
},
{
"key": "creator",
"value": {
"type": "USER",
"user_value": {
"id_str": "1330873852818313227",
"path": []
}
}
},
{
"key": "thumbnail_image_x_large",
"value": {
"image_value": {
"height": 630,
"width": 1200,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=png&name=2048x2048_2_exp"
},
"type": "IMAGE"
}
},
{
"key": "photo_image_full_size_original",
"value": {
"image_value": {
"height": 630,
"width": 1200,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=jpg&name=orig"
},
"type": "IMAGE"
}
},
{
"key": "vanity_url",
"value": {
"scribe_key": "vanity_url",
"string_value": "immunefi.com",
"type": "STRING"
}
},
{
"key": "photo_image_full_size",
"value": {
"image_value": {
"height": 314,
"width": 600,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=jpg&name=600x314"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image_color",
"value": {
"image_color_value": {
"palette": [
{
"rgb": {
"blue": 81,
"green": 21,
"red": 30
},
"percentage": 25.08
},
{
"rgb": {
"blue": 23,
"green": 5,
"red": 6
},
"percentage": 16.48
},
{
"rgb": {
"blue": 134,
"green": 36,
"red": 18
},
"percentage": 15.66
},
{
"rgb": {
"blue": 97,
"green": 22,
"red": 105
},
"percentage": 12.03
},
{
"rgb": {
"blue": 145,
"green": 32,
"red": 192
},
"percentage": 8.07
}
]
},
"type": "IMAGE_COLOR"
}
},
{
"key": "title",
"value": {
"string_value": "Ion Protocol Bug Bounties | Immunefi",
"type": "STRING"
}
},
{
"key": "summary_photo_image_color",
"value": {
"image_color_value": {
"palette": [
{
"rgb": {
"blue": 81,
"green": 21,
"red": 30
},
"percentage": 25.08
},
{
"rgb": {
"blue": 23,
"green": 5,
"red": 6
},
"percentage": 16.48
},
{
"rgb": {
"blue": 134,
"green": 36,
"red": 18
},
"percentage": 15.66
},
{
"rgb": {
"blue": 97,
"green": 22,
"red": 105
},
"percentage": 12.03
},
{
"rgb": {
"blue": 145,
"green": 32,
"red": 192
},
"percentage": 8.07
}
]
},
"type": "IMAGE_COLOR"
}
},
{
"key": "summary_photo_image_x_large",
"value": {
"image_value": {
"height": 630,
"width": 1200,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=png&name=2048x2048_2_exp"
},
"type": "IMAGE"
}
},
{
"key": "summary_photo_image",
"value": {
"image_value": {
"height": 314,
"width": 600,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=jpg&name=600x314"
},
"type": "IMAGE"
}
},
{
"key": "photo_image_full_size_color",
"value": {
"image_color_value": {
"palette": [
{
"rgb": {
"blue": 81,
"green": 21,
"red": 30
},
"percentage": 25.08
},
{
"rgb": {
"blue": 23,
"green": 5,
"red": 6
},
"percentage": 16.48
},
{
"rgb": {
"blue": 134,
"green": 36,
"red": 18
},
"percentage": 15.66
},
{
"rgb": {
"blue": 97,
"green": 22,
"red": 105
},
"percentage": 12.03
},
{
"rgb": {
"blue": 145,
"green": 32,
"red": 192
},
"percentage": 8.07
}
]
},
"type": "IMAGE_COLOR"
}
},
{
"key": "photo_image_full_size_x_large",
"value": {
"image_value": {
"height": 630,
"width": 1200,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=png&name=2048x2048_2_exp"
},
"type": "IMAGE"
}
},
{
"key": "card_url",
"value": {
"scribe_key": "card_url",
"string_value": "https://t.co/f8PxULKpxQ",
"type": "STRING"
}
},
{
"key": "summary_photo_image_original",
"value": {
"image_value": {
"height": 630,
"width": 1200,
"url": "https://pbs.twimg.com/card_img/1868942735375323136/-1Ynwor3?format=jpg&name=orig"
},
"type": "IMAGE"
}
}
],
"card_platform": {
"platform": {
"audience": {
"name": "production"
},
"device": {
"name": "Swift",
"version": "12"
}
}
},
"name": "summary_large_image",
"url": "https://t.co/f8PxULKpxQ",
"user_refs_results": [
{
"result": {
"__typename": "User",
"id": "VXNlcjoxMzMwODczODUyODE4MzEzMjI3",
"rest_id": "1330873852818313227",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Mon Nov 23 14:00:37 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "The leading bug bounty platform for blockchain with the world's largest bug bounties. More than $110m paid out to whitehats and $180m in rewards available.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "immunefi.com",
"expanded_url": "https://immunefi.com",
"url": "https://t.co/Y6aJULx0hv",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3796,
"followers_count": 49563,
"friends_count": 689,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 563,
"location": "Launch your bug bounty →",
"media_count": 1414,
"name": "Immunefi",
"normal_followers_count": 49563,
"pinned_tweet_ids_str": [
"1870130667549229279"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1330873852818313227/1733151869",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1863600122057105408/Zpmq8l5A_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "immunefi",
"statuses_count": 6734,
"translator_type": "none",
"url": "https://t.co/Y6aJULx0hv",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjoxMzMwODczODUyODE4MzEzMjI3",
"rest_id": "1330873852818313227",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Mon Nov 23 14:00:37 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "The leading bug bounty platform for blockchain with the world's largest bug bounties. More than $110m paid out to whitehats and $180m in rewards available.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "immunefi.com",
"expanded_url": "https://immunefi.com",
"url": "https://t.co/Y6aJULx0hv",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3796,
"followers_count": 49563,
"friends_count": 689,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 563,
"location": "Launch your bug bounty →",
"media_count": 1414,
"name": "Immunefi",
"normal_followers_count": 49563,
"pinned_tweet_ids_str": [
"1870130667549229279"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1330873852818313227/1733151869",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1863600122057105408/Zpmq8l5A_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "immunefi",
"statuses_count": 6734,
"translator_type": "none",
"url": "https://t.co/Y6aJULx0hv",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
]
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1863869339180339279"
],
"editable_until_msecs": "1733219654000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1521010",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://twitter.com\" rel=\"nofollow\">TweetDeck Web App</a>",
"legacy": {
"bookmark_count": 15,
"bookmarked": false,
"created_at": "Tue Dec 03 08:54:14 +0000 2024",
"conversation_id_str": "1863869339180339279",
"display_text_range": [
0,
164
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [
{
"display_url": "immunefi.com/bug-bounty/ion…",
"expanded_url": "https://immunefi.com/bug-bounty/ion-protocol/information/",
"url": "https://t.co/f8PxULKpxQ",
"indices": [
141,
164
]
}
],
"user_mentions": [
{
"id_str": "1594519419866476544",
"name": "Ion Protocol",
"screen_name": "ionprotocol",
"indices": [
19,
31
]
}
]
},
"favorite_count": 196,
"favorited": false,
"full_text": "New Bug Bounty! \uD83E\uDD73\n\n@ionprotocol is a price-agnostic lending platform built to support staked and restaked assets.\n\nFind bugs - get $250,000!\nhttps://t.co/f8PxULKpxQ",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 5,
"reply_count": 14,
"retweet_count": 41,
"retweeted": false,
"user_id_str": "1330873852818313227",
"id_str": "1863869339180339279"
}
}
},
"tweetDisplayType": "Tweet",
"promotedMetadata": {
"advertiser_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzMwODczODUyODE4MzEzMjI3",
"rest_id": "1330873852818313227",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Mon Nov 23 14:00:37 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "The leading bug bounty platform for blockchain with the world's largest bug bounties. More than $110m paid out to whitehats and $180m in rewards available.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "immunefi.com",
"expanded_url": "https://immunefi.com",
"url": "https://t.co/Y6aJULx0hv",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3796,
"followers_count": 49563,
"friends_count": 689,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 563,
"location": "Launch your bug bounty →",
"media_count": 1414,
"name": "Immunefi",
"normal_followers_count": 49563,
"pinned_tweet_ids_str": [
"1870130667549229279"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1330873852818313227/1733151869",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1863600122057105408/Zpmq8l5A_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "immunefi",
"statuses_count": 6734,
"translator_type": "none",
"url": "https://t.co/Y6aJULx0hv",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"adMetadataContainer": {
"renderLegacyWebsiteCard": false
},
"disclosureType": "NoDisclosure",
"experimentValues": [
{
"key": "nsfa_htl_experiment_enable",
"value": "10000"
},
{
"key": "nsfa_htl_experimental_threshold_profanity",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_binary",
"value": "1.0"
},
{
"key": "min_gap_for_nsfw_avoidance",
"value": "1"
},
{
"key": "nsfa_htl_experimental_threshold_drugs",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_hate_violence",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_sexual",
"value": "1.0"
}
],
"impressionId": "36c015f2dd1846c2",
"impressionString": "36c015f2dd1846c2",
"clickTrackingInfo": {
"urlParams": [
{
"key": "twclid",
"value": "2-gnqety68nusk7nvgomg7wala"
}
]
}
}
},
"clientEventInfo": {
"component": "for_you_promoted",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPromoted",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkVibj0EArLIAAAAAA="
}
}
}
}
},
{
"entryId": "tweet-1870176283851903152",
"sortIndex": "1870749872412426226",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870176283851903152",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjA1",
"rest_id": "1605",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/OpenAI",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1634058036934500352/b4F1eVpJ_bigger.jpg"
},
"description": "OpenAI",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"notifications": true,
"following": true,
"can_dm": false,
"can_media_tag": false,
"created_at": "Sun Jul 16 22:01:55 +0000 2006",
"default_profile": false,
"default_profile_image": false,
"description": "AI is cool i guess",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "blog.samaltman.com",
"expanded_url": "http://blog.samaltman.com",
"url": "https://t.co/teHmy8EFSH",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 1002,
"followers_count": 3144243,
"friends_count": 909,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 20159,
"location": "SF",
"media_count": 328,
"name": "Sam Altman",
"normal_followers_count": 3144243,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/804990434455887872/BG0Xh7Oa_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "sama",
"statuses_count": 6585,
"translator_type": "none",
"url": "https://t.co/teHmy8EFSH",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870176283851903152"
],
"editable_until_msecs": "1734723346000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "732377",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 711,
"bookmarked": false,
"created_at": "Fri Dec 20 18:35:46 +0000 2024",
"conversation_id_str": "1870176283851903152",
"display_text_range": [
0,
256
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 8648,
"favorited": false,
"full_text": "if you are a safety researcher, please consider applying to help test o3-mini and o3. excited to get these out for general availability soon.\n\nextremely proud of all of openai for the work and ingenuity that went into creating these models; they are great.",
"is_quote_status": false,
"lang": "en",
"quote_count": 115,
"reply_count": 539,
"retweet_count": 588,
"retweeted": false,
"user_id_str": "1605",
"id_str": "1870176283851903152"
},
"trend_results": {
"rest_id": "1870645427025871068"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-973944460"
]
},
"clientEventInfo": {
"component": "for_you_simclusters",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouSimclusters",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAEAAEAEgAAoACRWJuPQQCssgCAALAAAADg8ADAMAAAAZAQACAkIAAAAAIAEQAEAAgAgAAAAAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "tweet-1870524661089583543",
"sortIndex": "1870749872412426225",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870524661089583543",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyMTY1NTUyNTU3",
"rest_id": "2165552557",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed Oct 30 22:08:48 +0000 2013",
"default_profile": true,
"default_profile_image": false,
"description": "Building useful 3D printing",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "nickparker.co",
"expanded_url": "https://nickparker.co/",
"url": "https://t.co/bzHpIaNjh5",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 237665,
"followers_count": 2815,
"friends_count": 1117,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 39,
"location": "Montréal, Québec / SF",
"media_count": 394,
"name": "Nick Parker",
"normal_followers_count": 2815,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2165552557/1430004469",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1148240424357830656/digLzlse_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "NickParkerPrint",
"statuses_count": 4555,
"translator_type": "none",
"url": "https://t.co/bzHpIaNjh5",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870524661089583543"
],
"editable_until_msecs": "1734806406000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "368549",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1860750973905305943",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoyMTY1NTUyNTU3",
"rest_id": "2165552557",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Wed Oct 30 22:08:48 +0000 2013",
"default_profile": true,
"default_profile_image": false,
"description": "Building useful 3D printing",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "nickparker.co",
"expanded_url": "https://nickparker.co/",
"url": "https://t.co/bzHpIaNjh5",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 237665,
"followers_count": 2815,
"friends_count": 1117,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 39,
"location": "Montréal, Québec / SF",
"media_count": 394,
"name": "Nick Parker",
"normal_followers_count": 2815,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/2165552557/1430004469",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1148240424357830656/digLzlse_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "NickParkerPrint",
"statuses_count": 4555,
"translator_type": "none",
"url": "https://t.co/bzHpIaNjh5",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1860750973905305943"
],
"editable_until_msecs": "1732476177000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "489705",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"legacy": {
"bookmark_count": 199,
"bookmarked": false,
"created_at": "Sun Nov 24 18:22:57 +0000 2024",
"conversation_id_str": "1859478658328690881",
"display_text_range": [
9,
277
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/U6mpLsp3fB",
"expanded_url": "https://x.com/NickParkerPrint/status/1860750973905305943/photo/1",
"id_str": "1860750970134593536",
"indices": [
278,
301
],
"media_key": "3_1860750970134593536",
"media_url_https": "https://pbs.twimg.com/media/GdK3Jg5WAAAotio.jpg",
"type": "photo",
"url": "https://t.co/U6mpLsp3fB",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 2048,
"w": 945,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 554,
"resize": "fit"
},
"small": {
"h": 680,
"w": 314,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2048,
"width": 945,
"focus_rects": [
{
"x": 0,
"y": 1013,
"w": 945,
"h": 529
},
{
"x": 0,
"y": 805,
"w": 945,
"h": 945
},
{
"x": 0,
"y": 739,
"w": 945,
"h": 1077
},
{
"x": 0,
"y": 158,
"w": 945,
"h": 1890
},
{
"x": 0,
"y": 0,
"w": 945,
"h": 2048
}
]
},
"media_results": {
"result": {
"media_key": "3_1860750970134593536"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "354040563",
"name": "outside five sigma",
"screen_name": "jwt0625",
"indices": [
0,
8
]
}
]
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/U6mpLsp3fB",
"expanded_url": "https://x.com/NickParkerPrint/status/1860750973905305943/photo/1",
"id_str": "1860750970134593536",
"indices": [
278,
301
],
"media_key": "3_1860750970134593536",
"media_url_https": "https://pbs.twimg.com/media/GdK3Jg5WAAAotio.jpg",
"type": "photo",
"url": "https://t.co/U6mpLsp3fB",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 2048,
"w": 945,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 554,
"resize": "fit"
},
"small": {
"h": 680,
"w": 314,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 2048,
"width": 945,
"focus_rects": [
{
"x": 0,
"y": 1013,
"w": 945,
"h": 529
},
{
"x": 0,
"y": 805,
"w": 945,
"h": 945
},
{
"x": 0,
"y": 739,
"w": 945,
"h": 1077
},
{
"x": 0,
"y": 158,
"w": 945,
"h": 1890
},
{
"x": 0,
"y": 0,
"w": 945,
"h": 2048
}
]
},
"media_results": {
"result": {
"media_key": "3_1860750970134593536"
}
}
}
]
},
"favorite_count": 371,
"favorited": false,
"full_text": "@jwt0625 If you want an older generation it’s like $5.\n\nThese are 40k dot projectors and like a 14MP camera in visible, idk the IR resolution.\n\nI talked to an Apple engineer who said “don’t even try” to reverse engineer but idk, seems like a worthy project for the right hacker https://t.co/U6mpLsp3fB",
"in_reply_to_screen_name": "jwt0625",
"in_reply_to_status_id_str": "1860747502150099050",
"in_reply_to_user_id_str": "354040563",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 11,
"reply_count": 14,
"retweet_count": 12,
"retweeted": false,
"user_id_str": "2165552557",
"id_str": "1860750973905305943"
}
}
},
"legacy": {
"bookmark_count": 1149,
"bookmarked": false,
"created_at": "Sat Dec 21 17:40:06 +0000 2024",
"conversation_id_str": "1870524661089583543",
"display_text_range": [
0,
279
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1066843690096893953",
"name": "vincent",
"screen_name": "icanc4",
"indices": [
51,
58
]
}
]
},
"favorite_count": 1987,
"favorited": false,
"full_text": "OK my $1000 bounty on this is starting to pay off. @icanc4 has been working it at Waterloo and connected w a Russian hacker who has tons of not-published-in-English info.\n\nThere's a kill-switch in FaceID modules which we thought was antitampering, but it's actually laser safety!",
"is_quote_status": true,
"lang": "en",
"quote_count": 12,
"quoted_status_id_str": "1860750973905305943",
"quoted_status_permalink": {
"url": "https://t.co/zWmw4OVqY0",
"expanded": "https://twitter.com/NickParkerPrint/status/1860750973905305943",
"display": "x.com/NickParkerPrin…"
},
"reply_count": 20,
"retweet_count": 118,
"retweeted": false,
"user_id_str": "2165552557",
"id_str": "1870524661089583543"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-577346245"
]
},
"clientEventInfo": {
"component": "for_you_simclusters",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouSimclusters",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAAAAAAAgAAoACRWJuPQQCssgCAALAAAADw8ADAMAAAAZAQACAkIAAAAAIAAAAAAAgAIAAAAAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "tweet-1870485835537416330",
"sortIndex": "1870749872412426224",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870485835537416330",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMDU2ODY3OTY4NTExMDY2MTEy",
"rest_id": "1056867968511066112",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"followed_by": true,
"notifications": true,
"following": true,
"can_dm": true,
"can_media_tag": false,
"created_at": "Mon Oct 29 11:18:54 +0000 2018",
"default_profile": true,
"default_profile_image": false,
"description": "\uD835\uDC95\uD835\uDC89\uD835\uDC86\uD835\uDC9A \uD835\uDC82\uD835\uDC93\uD835\uDC86 \uD835\uDC8D\uD835\uDC8A\uD835\uDC8C\uD835\uDC86 \uD835\uDC88\uD835\uDC89\uD835\uDC90\uD835\uDC94\uD835\uDC95\uD835\uDC94 \uD835\uDC8A\uD835\uDC8F \uD835\uDC95\uD835\uDC89\uD835\uDC86 \uD835\uDC8E\uD835\uDC82\uD835\uDC84\uD835\uDC89\uD835\uDC8A\uD835\uDC8F\uD835\uDC86 . . .",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 20391,
"followers_count": 4560,
"friends_count": 511,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 50,
"location": "⍨⧍⍨",
"media_count": 551,
"name": "ʟᴇɢɪᴛ",
"normal_followers_count": 4560,
"pinned_tweet_ids_str": [
"1857328535494430863"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1056867968511066112/1724414339",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1856495239789191168/C809d4_J_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "legit_rumors",
"statuses_count": 1823,
"translator_type": "none",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1762515784905920643",
"professional_type": "Creator",
"category": [
{
"id": 713,
"name": "Science & Technology",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": false
}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870485835537416330"
],
"editable_until_msecs": "1734797149000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "5872",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"legacy": {
"bookmark_count": 13,
"bookmarked": false,
"created_at": "Sat Dec 21 15:05:49 +0000 2024",
"conversation_id_str": "1870485835537416330",
"display_text_range": [
0,
200
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/0RPFPzFw5v",
"expanded_url": "https://x.com/legit_rumors/status/1870485835537416330/photo/1",
"id_str": "1870485831418318849",
"indices": [
201,
224
],
"media_key": "3_1870485831418318849",
"media_url_https": "https://pbs.twimg.com/media/GfVM9BMXEAEpmYs.jpg",
"type": "photo",
"url": "https://t.co/0RPFPzFw5v",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 74,
"y": 177,
"h": 57,
"w": 57
}
]
},
"medium": {
"faces": [
{
"x": 73,
"y": 176,
"h": 56,
"w": 56
}
]
},
"small": {
"faces": [
{
"x": 41,
"y": 99,
"h": 32,
"w": 32
}
]
},
"orig": {
"faces": [
{
"x": 74,
"y": 177,
"h": 57,
"w": 57
}
]
}
},
"sizes": {
"large": {
"h": 838,
"w": 1206,
"resize": "fit"
},
"medium": {
"h": 834,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 473,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 838,
"width": 1206,
"focus_rects": [
{
"x": 0,
"y": 163,
"w": 1206,
"h": 675
},
{
"x": 0,
"y": 0,
"w": 838,
"h": 838
},
{
"x": 24,
"y": 0,
"w": 735,
"h": 838
},
{
"x": 182,
"y": 0,
"w": 419,
"h": 838
},
{
"x": 0,
"y": 0,
"w": 1206,
"h": 838
}
]
},
"media_results": {
"result": {
"media_key": "3_1870485831418318849"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/0RPFPzFw5v",
"expanded_url": "https://x.com/legit_rumors/status/1870485835537416330/photo/1",
"id_str": "1870485831418318849",
"indices": [
201,
224
],
"media_key": "3_1870485831418318849",
"media_url_https": "https://pbs.twimg.com/media/GfVM9BMXEAEpmYs.jpg",
"type": "photo",
"url": "https://t.co/0RPFPzFw5v",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"x": 74,
"y": 177,
"h": 57,
"w": 57
}
]
},
"medium": {
"faces": [
{
"x": 73,
"y": 176,
"h": 56,
"w": 56
}
]
},
"small": {
"faces": [
{
"x": 41,
"y": 99,
"h": 32,
"w": 32
}
]
},
"orig": {
"faces": [
{
"x": 74,
"y": 177,
"h": 57,
"w": 57
}
]
}
},
"sizes": {
"large": {
"h": 838,
"w": 1206,
"resize": "fit"
},
"medium": {
"h": 834,
"w": 1200,
"resize": "fit"
},
"small": {
"h": 473,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 838,
"width": 1206,
"focus_rects": [
{
"x": 0,
"y": 163,
"w": 1206,
"h": 675
},
{
"x": 0,
"y": 0,
"w": 838,
"h": 838
},
{
"x": 24,
"y": 0,
"w": 735,
"h": 838
},
{
"x": 182,
"y": 0,
"w": 419,
"h": 838
},
{
"x": 0,
"y": 0,
"w": 1206,
"h": 838
}
]
},
"media_results": {
"result": {
"media_key": "3_1870485831418318849"
}
}
}
]
},
"favorite_count": 90,
"favorited": false,
"full_text": "I wonder what could've been if we got gpt-4.5 / gpt-5 instead \uD83E\uDD14\n\nhow much time could it free up, how reliable could it have been, how much better could they make it, etc\n\nI miss the GPT series already https://t.co/0RPFPzFw5v",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 0,
"reply_count": 7,
"retweet_count": 1,
"retweeted": false,
"user_id_str": "1056867968511066112",
"id_str": "1870485835537416330"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-1298486603"
]
},
"clientEventInfo": {
"component": "for_you_in_network",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouInNetwork",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAAEA8ADAMAAAAZAQACAkIAAAAAIAEAAAAAgAIAAAAAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "tweet-1870375815747400158",
"sortIndex": "1870749872412426223",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870375815747400158",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjcxOTMzMDk=",
"rest_id": "167193309",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"followed_by": true,
"following": true,
"can_dm": true,
"can_media_tag": false,
"created_at": "Fri Jul 16 00:05:38 +0000 2010",
"default_profile": false,
"default_profile_image": false,
"description": "practically irresistible. violently suburban. I made a jQuery plugin, gave a few talks and made a couple beats. you gotta be 2 somethin to do somethin.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "linktr.ee/kenwheelerbeats",
"expanded_url": "https://linktr.ee/kenwheelerbeats",
"url": "https://t.co/bJ3l7ZNiLS",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 196098,
"followers_count": 50032,
"friends_count": 3022,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 669,
"location": "Jersey Shore",
"media_count": 9858,
"name": "lil uzi perf",
"normal_followers_count": 50032,
"pinned_tweet_ids_str": [
"1784378525593501814"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/167193309/1686272434",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1584343135076892683/3ngvuzH__normal.jpg",
"profile_interstitial_type": "",
"screen_name": "ken_wheeler",
"statuses_count": 65215,
"translator_type": "none",
"url": "https://t.co/bJ3l7ZNiLS",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1537020699369414656",
"professional_type": "Creator",
"category": [
{
"id": 941,
"name": "Music Producer",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870375815747400158"
],
"editable_until_msecs": "1734770919000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "36407",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 34,
"bookmarked": false,
"created_at": "Sat Dec 21 07:48:39 +0000 2024",
"conversation_id_str": "1870375815747400158",
"display_text_range": [
0,
136
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 604,
"favorited": false,
"full_text": "its high time this got said. as a record producer with 20 years in the game:\n\nbritney spears - toxic\n\nis the most perfect song ever made",
"is_quote_status": false,
"lang": "en",
"quote_count": 5,
"reply_count": 45,
"retweet_count": 9,
"retweeted": false,
"user_id_str": "167193309",
"id_str": "1870375815747400158"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"97100034"
]
},
"clientEventInfo": {
"component": "for_you_simclusters",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouSimclusters",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAAEQ8ADAMAAAAaAQACAkIAAAAAIAEAAAAAgAAAAAAAAAAAgBAKAA7oPNp8HQVJRAoAELdnAt38ZkPVAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1870650291454120364",
"sortIndex": "1870749872412426222",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870650291454120364",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0MDA0MzY0MzI3",
"rest_id": "4004364327",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Oct 20 20:07:48 +0000 2015",
"default_profile": true,
"default_profile_image": false,
"description": "Data scientist and AI researcher. R&D at https://t.co/9xrxRrGfEE.",
"entities": {
"description": {
"urls": [
{
"display_url": "answer.ai",
"expanded_url": "http://answer.ai",
"url": "https://t.co/9xrxRrGfEE",
"indices": [
41,
64
]
}
]
},
"url": {
"urls": [
{
"display_url": "johnowhitaker.dev",
"expanded_url": "http://johnowhitaker.dev",
"url": "https://t.co/GWPJDPerHO",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 18302,
"followers_count": 8277,
"friends_count": 993,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 204,
"location": "Portland, Oregon",
"media_count": 677,
"name": "Jonathan Whitaker",
"normal_followers_count": 8277,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/4004364327/1649394299",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1734357687796748288/RWKKnzbT_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "johnowhitaker",
"statuses_count": 2351,
"translator_type": "none",
"url": "https://t.co/GWPJDPerHO",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870650291454120364"
],
"editable_until_msecs": "1734836359000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "18218",
"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": "Tm90ZVR3ZWV0OjE4NzA2NTAyOTEzNDA4NDA5NjA=",
"text": "I hooked up this little ESP32-CAM to my wifi. It takes a picture every 30s and sends it to flash-8B with a prompt like 'is there a person in this image?'. If the model says yes (with structured outputs), it turns on an LED. If I left this on for a month it would cost about $1. \nObviously this is the worst security cam ever, BUT I think it's a compelling demo. You can put some 'intelligence' in the loop of a hobby project with <$10 in hardware and fractions of a cent per API call. You can 'program' it in natural language like 'if there is an orange cat playing with my plant'. And with LLM help, modifying the code is possibly as easy as 'make this send me a discord notification if the alarm is triggered twice in an hour'.\nAnyway, now that I know this thing works it has other projects it is destined for. But cool to know how easy it is to whip this up :)",
"entity_set": {
"hashtags": [],
"symbols": [],
"urls": [],
"user_mentions": []
},
"richtext": {
"richtext_tags": []
},
"media": {
"inline_media": []
}
}
}
},
"legacy": {
"bookmark_count": 146,
"bookmarked": false,
"created_at": "Sun Dec 22 01:59:19 +0000 2024",
"conversation_id_str": "1870650291454120364",
"display_text_range": [
0,
277
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/A47VoocYa6",
"expanded_url": "https://x.com/johnowhitaker/status/1870650291454120364/photo/1",
"ext_alt_text": "A tiny board with camera module (the ESP32-CAM)",
"id_str": "1870650062386475008",
"indices": [
278,
301
],
"media_key": "3_1870650062386475008",
"media_url_https": "https://pbs.twimg.com/media/GfXiUhObsAAoQla.jpg",
"type": "photo",
"url": "https://t.co/A47VoocYa6",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1952,
"w": 1466,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 901,
"resize": "fit"
},
"small": {
"h": 680,
"w": 511,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1952,
"width": 1466,
"focus_rects": [
{
"x": 0,
"y": 322,
"w": 1466,
"h": 821
},
{
"x": 0,
"y": 0,
"w": 1466,
"h": 1466
},
{
"x": 0,
"y": 0,
"w": 1466,
"h": 1671
},
{
"x": 341,
"y": 0,
"w": 976,
"h": 1952
},
{
"x": 0,
"y": 0,
"w": 1466,
"h": 1952
}
]
},
"media_results": {
"result": {
"media_key": "3_1870650062386475008"
}
}
},
{
"display_url": "pic.x.com/A47VoocYa6",
"expanded_url": "https://x.com/johnowhitaker/status/1870650291454120364/photo/1",
"ext_alt_text": "A potato-quality picture in the test interface I (OK, o1) made.",
"id_str": "1870644113214947328",
"indices": [
278,
301
],
"media_key": "3_1870644113214947328",
"media_url_https": "https://pbs.twimg.com/media/GfXc6O1aQAAOfvs.jpg",
"type": "photo",
"url": "https://t.co/A47VoocYa6",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 924,
"w": 993,
"resize": "fit"
},
"medium": {
"h": 924,
"w": 993,
"resize": "fit"
},
"small": {
"h": 633,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 924,
"width": 993,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 993,
"h": 556
},
{
"x": 0,
"y": 0,
"w": 924,
"h": 924
},
{
"x": 16,
"y": 0,
"w": 811,
"h": 924
},
{
"x": 190,
"y": 0,
"w": 462,
"h": 924
},
{
"x": 0,
"y": 0,
"w": 993,
"h": 924
}
]
},
"media_results": {
"result": {
"media_key": "3_1870644113214947328"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/A47VoocYa6",
"expanded_url": "https://x.com/johnowhitaker/status/1870650291454120364/photo/1",
"ext_alt_text": "A tiny board with camera module (the ESP32-CAM)",
"id_str": "1870650062386475008",
"indices": [
278,
301
],
"media_key": "3_1870650062386475008",
"media_url_https": "https://pbs.twimg.com/media/GfXiUhObsAAoQla.jpg",
"type": "photo",
"url": "https://t.co/A47VoocYa6",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1952,
"w": 1466,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 901,
"resize": "fit"
},
"small": {
"h": 680,
"w": 511,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1952,
"width": 1466,
"focus_rects": [
{
"x": 0,
"y": 322,
"w": 1466,
"h": 821
},
{
"x": 0,
"y": 0,
"w": 1466,
"h": 1466
},
{
"x": 0,
"y": 0,
"w": 1466,
"h": 1671
},
{
"x": 341,
"y": 0,
"w": 976,
"h": 1952
},
{
"x": 0,
"y": 0,
"w": 1466,
"h": 1952
}
]
},
"media_results": {
"result": {
"media_key": "3_1870650062386475008"
}
}
},
{
"display_url": "pic.x.com/A47VoocYa6",
"expanded_url": "https://x.com/johnowhitaker/status/1870650291454120364/photo/1",
"ext_alt_text": "A potato-quality picture in the test interface I (OK, o1) made.",
"id_str": "1870644113214947328",
"indices": [
278,
301
],
"media_key": "3_1870644113214947328",
"media_url_https": "https://pbs.twimg.com/media/GfXc6O1aQAAOfvs.jpg",
"type": "photo",
"url": "https://t.co/A47VoocYa6",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 924,
"w": 993,
"resize": "fit"
},
"medium": {
"h": 924,
"w": 993,
"resize": "fit"
},
"small": {
"h": 633,
"w": 680,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 924,
"width": 993,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 993,
"h": 556
},
{
"x": 0,
"y": 0,
"w": 924,
"h": 924
},
{
"x": 16,
"y": 0,
"w": 811,
"h": 924
},
{
"x": 190,
"y": 0,
"w": 462,
"h": 924
},
{
"x": 0,
"y": 0,
"w": 993,
"h": 924
}
]
},
"media_results": {
"result": {
"media_key": "3_1870644113214947328"
}
}
}
]
},
"favorite_count": 213,
"favorited": false,
"full_text": "I hooked up this little ESP32-CAM to my wifi. It takes a picture every 30s and sends it to flash-8B with a prompt like 'is there a person in this image?'. If the model says yes (with structured outputs), it turns on an LED. If I left this on for a month it would cost about $1. https://t.co/A47VoocYa6",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 3,
"reply_count": 10,
"retweet_count": 15,
"retweeted": false,
"user_id_str": "4004364327",
"id_str": "1870650291454120364"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-1277202205"
]
},
"clientEventInfo": {
"component": "for_you_uteg",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouUteg",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAAAAAAAgAAoACRWJuPQQCssgCAALAAAAEg8ADAMAAAAZAQACAkIAAAAAIAAAAAAAgAIAAAAAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "tweet-1870525134664278331",
"sortIndex": "1870749872412426221",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870525134664278331",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozNDQyODIzNDA=",
"rest_id": "344282340",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Thu Jul 28 20:35:43 +0000 2011",
"default_profile": true,
"default_profile_image": false,
"description": "Working on Sora @OpenAI. Write and play music for @ Sally Mango.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "rohansahai.com",
"expanded_url": "http://rohansahai.com",
"url": "https://t.co/7VVhNxv8JX",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3720,
"followers_count": 2601,
"friends_count": 551,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 57,
"location": "San Francisco",
"media_count": 13,
"name": "Rohan Sahai",
"normal_followers_count": 2601,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/344282340/1734071894",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1867457500448272384/yRxKT8rd_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "rohanjamin",
"statuses_count": 406,
"translator_type": "none",
"url": "https://t.co/7VVhNxv8JX",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870525134664278331"
],
"editable_until_msecs": "1734806519000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "156886",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1870524745302839559",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjA1",
"rest_id": "1605",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/OpenAI",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1634058036934500352/b4F1eVpJ_bigger.jpg"
},
"description": "OpenAI",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"notifications": true,
"following": true,
"can_dm": false,
"can_media_tag": false,
"created_at": "Sun Jul 16 22:01:55 +0000 2006",
"default_profile": false,
"default_profile_image": false,
"description": "AI is cool i guess",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "blog.samaltman.com",
"expanded_url": "http://blog.samaltman.com",
"url": "https://t.co/teHmy8EFSH",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 1002,
"followers_count": 3144243,
"friends_count": 909,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 20159,
"location": "SF",
"media_count": 328,
"name": "Sam Altman",
"normal_followers_count": 3144243,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/804990434455887872/BG0Xh7Oa_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "sama",
"statuses_count": 6585,
"translator_type": "none",
"url": "https://t.co/teHmy8EFSH",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870524745302839559"
],
"editable_until_msecs": "1734806426000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "618198",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 640,
"bookmarked": false,
"created_at": "Sat Dec 21 17:40:26 +0000 2024",
"conversation_id_str": "1870524745302839559",
"display_text_range": [
0,
239
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 8137,
"favorited": false,
"full_text": "day 13 of shipmas: special sora bonus\uD83C\uDF84✨\n\nour GPUs get a little less busy during late december as people take a break from work, so we are giving all plus users unlimited sora access via the relaxed queue over the holidays!\n\nenjoy creating!",
"is_quote_status": false,
"lang": "en",
"quote_count": 172,
"reply_count": 432,
"retweet_count": 488,
"retweeted": false,
"user_id_str": "1605",
"id_str": "1870524745302839559"
}
}
},
"legacy": {
"bookmark_count": 27,
"bookmarked": false,
"created_at": "Sat Dec 21 17:41:59 +0000 2024",
"conversation_id_str": "1870525134664278331",
"display_text_range": [
0,
219
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 414,
"favorited": false,
"full_text": "Shipmas Day 13 Sora Bonus?? \uD83C\uDF89✨\n\nWe’ve also rolled out Sora access to all Teams users, upgraded our blend feature, and enabled shared links so you can share Sora creations with friends—even if they don’t have an account.",
"is_quote_status": true,
"lang": "en",
"quote_count": 4,
"quoted_status_id_str": "1870524745302839559",
"quoted_status_permalink": {
"url": "https://t.co/SPYzNk7vND",
"expanded": "https://twitter.com/sama/status/1870524745302839559",
"display": "x.com/sama/status/18…"
},
"reply_count": 32,
"retweet_count": 52,
"retweeted": false,
"user_id_str": "344282340",
"id_str": "1870525134664278331"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-131028758"
]
},
"clientEventInfo": {
"component": "for_you_uteg",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouUteg",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAAAAAAAgAAoACRWJuPQQCssgCAALAAAAEw8ADAMAAAAZAQACAkIAAAAAIAAAAAAAgAIAAAAAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "promoted-tweet-1869373550487802034-36c063fd5e48dcdc",
"sortIndex": "1870749872412426220",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1869373550487802034",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMjg1Njg0MzAxNTEwNzA5MjUw",
"rest_id": "1285684301510709250",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Jul 21 21:13:41 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "Multi-LLM copilot with access to context across your entire developer workflow - from browsers and IDEs to collaboration tools \uD83E\uDDD1‍\uD83D\uDCBB",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "pieces.app",
"expanded_url": "http://pieces.app",
"url": "https://t.co/vMJhkoZPIm",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 10990,
"followers_count": 5712,
"friends_count": 523,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 34,
"location": "Cincinnati, OH",
"media_count": 689,
"name": "Pieces for Developers",
"normal_followers_count": 5712,
"pinned_tweet_ids_str": [
"1870499601737826306"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1285684301510709250/1728658688",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1852364003680370688/S3NngZXc_normal.png",
"profile_interstitial_type": "",
"screen_name": "getpieces",
"statuses_count": 3319,
"translator_type": "none",
"url": "https://t.co/vMJhkoZPIm",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1547215538505633797",
"professional_type": "Business",
"category": [
{
"id": 714,
"name": "Technology Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
}
},
"card": {
"rest_id": "card://1869372429182607360",
"legacy": {
"binding_values": [
{
"key": "unified_card",
"value": {
"string_value": "{\"type\":\"image_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Download Pieces For Free\",\"is_rtl\":false},\"subtitle\":{\"content\":\"pieces.app\",\"is_rtl\":false},\"destination\":\"browser_1\"}},\"media_1\":{\"type\":\"media\",\"data\":{\"id\":\"3_1869371155288596480\",\"destination\":\"browser_1\"}}},\"destination_objects\":{\"browser_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://pieces.app/home-2/?utm_source=twitter&utm_medium=cpc&utm_campaign=Cold_Testing_Downloads_12-2024_Ads\",\"vanity\":\"pieces.app\"}}}},\"components\":[\"media_1\",\"details_1\"],\"media_entities\":{\"3_1869371155288596480\":{\"id\":1869371155288596480,\"id_str\":\"1869371155288596480\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GfFXKVBWoAAM9jo.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":2000,\"height\":2000,\"focus_rects\":[{\"x\":0,\"y\":0,\"h\":1120,\"w\":2000},{\"x\":0,\"y\":0,\"h\":2000,\"w\":2000},{\"x\":246,\"y\":0,\"h\":2000,\"w\":1754},{\"x\":950,\"y\":0,\"h\":2000,\"w\":1000},{\"x\":0,\"y\":0,\"h\":2000,\"w\":2000}]},\"sizes\":{\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"medium\":{\"w\":1200,\"h\":1200,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":2000,\"h\":2000,\"resize\":\"fit\"}},\"source_user_id\":1285684301510709250,\"source_user_id_str\":\"1285684301510709250\",\"media_key\":\"3_1869371155288596480\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":34,\"green\":26,\"blue\":24},\"percentage\":91.19},{\"rgb\":{\"red\":214,\"green\":209,\"blue\":208},\"percentage\":5.26},{\"rgb\":{\"red\":119,\"green\":115,\"blue\":115},\"percentage\":4.58},{\"rgb\":{\"red\":104,\"green\":99,\"blue\":97},\"percentage\":0.25}]}},\"ttl\":-1}}}}}",
"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://1869372429182607360",
"user_refs_results": []
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1869373550487802034"
],
"editable_until_msecs": "1734531960000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "48835",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://help.twitter.com/en/using-twitter/how-to-tweet#source-labels\" rel=\"nofollow\">advertiser-interface</a>",
"legacy": {
"bookmark_count": 2,
"bookmarked": false,
"created_at": "Wed Dec 18 13:26:00 +0000 2024",
"conversation_id_str": "1869373550487802034",
"display_text_range": [
0,
88
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 8,
"favorited": false,
"full_text": "Supercharge &amp; Use Any LLM With Long Term OS-level Context. Download Pieces For Free.",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 1,
"retweet_count": 0,
"retweeted": false,
"scopes": {
"followers": false
},
"user_id_str": "1285684301510709250",
"id_str": "1869373550487802034"
}
}
},
"tweetDisplayType": "Tweet",
"promotedMetadata": {
"advertiser_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMjg1Njg0MzAxNTEwNzA5MjUw",
"rest_id": "1285684301510709250",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Tue Jul 21 21:13:41 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "Multi-LLM copilot with access to context across your entire developer workflow - from browsers and IDEs to collaboration tools \uD83E\uDDD1‍\uD83D\uDCBB",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "pieces.app",
"expanded_url": "http://pieces.app",
"url": "https://t.co/vMJhkoZPIm",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 10990,
"followers_count": 5712,
"friends_count": 523,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 34,
"location": "Cincinnati, OH",
"media_count": 689,
"name": "Pieces for Developers",
"normal_followers_count": 5712,
"pinned_tweet_ids_str": [
"1870499601737826306"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1285684301510709250/1728658688",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1852364003680370688/S3NngZXc_normal.png",
"profile_interstitial_type": "",
"screen_name": "getpieces",
"statuses_count": 3319,
"translator_type": "none",
"url": "https://t.co/vMJhkoZPIm",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1547215538505633797",
"professional_type": "Business",
"category": [
{
"id": 714,
"name": "Technology Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
},
"adMetadataContainer": {
"renderLegacyWebsiteCard": false
},
"disclosureType": "NoDisclosure",
"experimentValues": [
{
"key": "nsfa_htl_experiment_enable",
"value": "10000"
},
{
"key": "nsfa_htl_experimental_threshold_profanity",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_binary",
"value": "1.0"
},
{
"key": "min_gap_for_nsfw_avoidance",
"value": "1"
},
{
"key": "nsfa_htl_experimental_threshold_drugs",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_hate_violence",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_sexual",
"value": "1.0"
},
{
"key": "website_card_variation",
"value": "0"
}
],
"impressionId": "36c063fd5e48dcdc",
"impressionString": "36c063fd5e48dcdc",
"clickTrackingInfo": {
"urlParams": [
{
"key": "twclid",
"value": "2658xf8nkz0l1cqzd0fpzap5ag"
}
]
}
}
},
"clientEventInfo": {
"component": "for_you_promoted",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPromoted",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkVibj0EArLIAAAAAA="
}
}
}
}
},
{
"entryId": "tweet-1870549833196466241",
"sortIndex": "1870749872412426219",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870549833196466241",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzYwNTQyMTM2NTg0ODU5NjQ5",
"rest_id": "1360542136584859649",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": true,
"can_dm": true,
"can_media_tag": true,
"created_at": "Sat Feb 13 10:51:44 +0000 2021",
"default_profile": true,
"default_profile_image": false,
"description": "infinite canvas / https://t.co/oXL4NAc6P8 / https://t.co/dO6WPp6YOI / https://t.co/FbWiDYFD3O",
"entities": {
"description": {
"urls": [
{
"display_url": "tldraw.com",
"expanded_url": "http://tldraw.com",
"url": "https://t.co/oXL4NAc6P8",
"indices": [
18,
41
]
},
{
"display_url": "tldraw.dev",
"expanded_url": "http://tldraw.dev",
"url": "https://t.co/dO6WPp6YOI",
"indices": [
44,
67
]
},
{
"display_url": "discord.gg/s4FXZ6fppJ",
"expanded_url": "http://discord.gg/s4FXZ6fppJ",
"url": "https://t.co/FbWiDYFD3O",
"indices": [
70,
93
]
}
]
},
"url": {
"urls": [
{
"display_url": "tldraw.com",
"expanded_url": "http://tldraw.com",
"url": "https://t.co/oXL4NAc6P8",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 5452,
"followers_count": 66077,
"friends_count": 9,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 545,
"location": "London",
"media_count": 1257,
"name": "tldraw",
"normal_followers_count": 66077,
"pinned_tweet_ids_str": [
"1791992585990406610"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1360542136584859649/1702413964",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1597925601490485248/MWsSHrT2_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "tldraw",
"statuses_count": 3722,
"translator_type": "none",
"url": "https://t.co/oXL4NAc6P8",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1597925228474163208",
"professional_type": "Business",
"category": []
},
"tipjar_settings": {}
}
}
},
"card": {
"rest_id": "https://t.co/T1VBkMvyfA",
"legacy": {
"binding_values": [
{
"key": "photo_image_full_size_large",
"value": {
"image_value": {
"height": 419,
"width": 800,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=800x419"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image",
"value": {
"image_value": {
"height": 200,
"width": 400,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=400x400"
},
"type": "IMAGE"
}
},
{
"key": "description",
"value": {
"string_value": "whiteboard / infinite canvas SDK. Contribute to tldraw/tldraw development by creating an account on GitHub.",
"type": "STRING"
}
},
{
"key": "domain",
"value": {
"string_value": "github.com",
"type": "STRING"
}
},
{
"key": "thumbnail_image_large",
"value": {
"image_value": {
"height": 300,
"width": 600,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=600x600"
},
"type": "IMAGE"
}
},
{
"key": "summary_photo_image_small",
"value": {
"image_value": {
"height": 202,
"width": 386,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=386x202"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image_original",
"value": {
"image_value": {
"height": 1280,
"width": 2561,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=orig"
},
"type": "IMAGE"
}
},
{
"key": "site",
"value": {
"scribe_key": "publisher_id",
"type": "USER",
"user_value": {
"id_str": "13334762",
"path": []
}
}
},
{
"key": "photo_image_full_size_small",
"value": {
"image_value": {
"height": 202,
"width": 386,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=386x202"
},
"type": "IMAGE"
}
},
{
"key": "summary_photo_image_large",
"value": {
"image_value": {
"height": 419,
"width": 800,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=800x419"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image_small",
"value": {
"image_value": {
"height": 72,
"width": 144,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=144x144"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image_x_large",
"value": {
"image_value": {
"height": 1024,
"width": 2048,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=2048x2048_2_exp"
},
"type": "IMAGE"
}
},
{
"key": "photo_image_full_size_original",
"value": {
"image_value": {
"height": 1280,
"width": 2561,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=orig"
},
"type": "IMAGE"
}
},
{
"key": "photo_image_full_size_alt_text",
"value": {
"string_value": "whiteboard / infinite canvas SDK. Contribute to tldraw/tldraw development by creating an account on GitHub.",
"type": "STRING"
}
},
{
"key": "vanity_url",
"value": {
"scribe_key": "vanity_url",
"string_value": "github.com",
"type": "STRING"
}
},
{
"key": "photo_image_full_size",
"value": {
"image_value": {
"height": 314,
"width": 600,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=600x314"
},
"type": "IMAGE"
}
},
{
"key": "summary_photo_image_alt_text",
"value": {
"string_value": "whiteboard / infinite canvas SDK. Contribute to tldraw/tldraw development by creating an account on GitHub.",
"type": "STRING"
}
},
{
"key": "thumbnail_image_color",
"value": {
"image_color_value": {
"palette": [
{
"rgb": {
"blue": 254,
"green": 254,
"red": 254
},
"percentage": 9.74
},
{
"rgb": {
"blue": 0,
"green": 0,
"red": 0
},
"percentage": 6.71
},
{
"rgb": {
"blue": 113,
"green": 113,
"red": 113
},
"percentage": 1.46
}
]
},
"type": "IMAGE_COLOR"
}
},
{
"key": "title",
"value": {
"string_value": "GitHub - tldraw/tldraw: whiteboard / infinite canvas SDK",
"type": "STRING"
}
},
{
"key": "summary_photo_image_color",
"value": {
"image_color_value": {
"palette": [
{
"rgb": {
"blue": 254,
"green": 254,
"red": 254
},
"percentage": 9.74
},
{
"rgb": {
"blue": 0,
"green": 0,
"red": 0
},
"percentage": 6.71
},
{
"rgb": {
"blue": 113,
"green": 113,
"red": 113
},
"percentage": 1.46
}
]
},
"type": "IMAGE_COLOR"
}
},
{
"key": "summary_photo_image_x_large",
"value": {
"image_value": {
"height": 1024,
"width": 2048,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=2048x2048_2_exp"
},
"type": "IMAGE"
}
},
{
"key": "summary_photo_image",
"value": {
"image_value": {
"height": 314,
"width": 600,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=600x314"
},
"type": "IMAGE"
}
},
{
"key": "photo_image_full_size_color",
"value": {
"image_color_value": {
"palette": [
{
"rgb": {
"blue": 254,
"green": 254,
"red": 254
},
"percentage": 9.74
},
{
"rgb": {
"blue": 0,
"green": 0,
"red": 0
},
"percentage": 6.71
},
{
"rgb": {
"blue": 113,
"green": 113,
"red": 113
},
"percentage": 1.46
}
]
},
"type": "IMAGE_COLOR"
}
},
{
"key": "photo_image_full_size_x_large",
"value": {
"image_value": {
"height": 1024,
"width": 2048,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=2048x2048_2_exp"
},
"type": "IMAGE"
}
},
{
"key": "card_url",
"value": {
"scribe_key": "card_url",
"string_value": "https://t.co/T1VBkMvyfA",
"type": "STRING"
}
},
{
"key": "summary_photo_image_original",
"value": {
"image_value": {
"height": 1280,
"width": 2561,
"url": "https://pbs.twimg.com/card_img/1870707136612696064/F1kZlTSv?format=png&name=orig"
},
"type": "IMAGE"
}
}
],
"card_platform": {
"platform": {
"audience": {
"name": "production"
},
"device": {
"name": "Swift",
"version": "12"
}
}
},
"name": "summary_large_image",
"url": "https://t.co/T1VBkMvyfA",
"user_refs_results": [
{
"result": {
"__typename": "User",
"id": "VXNlcjoxMzMzNDc2Mg==",
"rest_id": "13334762",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": true,
"can_dm": false,
"can_media_tag": true,
"created_at": "Mon Feb 11 04:41:50 +0000 2008",
"default_profile": false,
"default_profile_image": false,
"description": "The AI-powered developer platform to build, scale, and deliver secure software.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "github.com",
"expanded_url": "http://github.com",
"url": "https://t.co/bbJgfyzcJR",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 8232,
"followers_count": 2607333,
"friends_count": 337,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 17915,
"location": "San Francisco, CA",
"media_count": 2492,
"name": "GitHub",
"normal_followers_count": 2607333,
"pinned_tweet_ids_str": [
"1869447551876788359"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/13334762/1721228108",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1633247750010830848/8zfRrYjA_normal.png",
"profile_interstitial_type": "",
"screen_name": "github",
"statuses_count": 9362,
"translator_type": "none",
"url": "https://t.co/bbJgfyzcJR",
"verified": false,
"verified_type": "Business",
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
]
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870549833196466241"
],
"editable_until_msecs": "1734812408000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "6272",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"legacy": {
"bookmark_count": 22,
"bookmarked": false,
"created_at": "Sat Dec 21 19:20:08 +0000 2024",
"conversation_id_str": "1870549833196466241",
"display_text_range": [
0,
112
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [
{
"display_url": "github.com/tldraw/tldraw",
"expanded_url": "https://github.com/tldraw/tldraw",
"url": "https://t.co/T1VBkMvyfA",
"indices": [
89,
112
]
}
],
"user_mentions": []
},
"favorite_count": 99,
"favorited": false,
"full_text": "73% of you have not starred our repo. still time to get your star in, don’t wait act now https://t.co/T1VBkMvyfA",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 2,
"reply_count": 5,
"retweet_count": 3,
"retweeted": false,
"user_id_str": "1360542136584859649",
"id_str": "1870549833196466241"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-1724764346"
]
},
"clientEventInfo": {
"component": "for_you_in_network",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouInNetwork",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAAFQ8ADAMAAAAZAQACAkIAAAAAIAEAAAAAgAIAAAAAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "tweet-1870660846877307200",
"sortIndex": "1870749872412426218",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870660846877307200",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo4NTY3NTM1MDI=",
"rest_id": "856753502",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"followed_by": true,
"following": true,
"can_dm": true,
"can_media_tag": true,
"created_at": "Mon Oct 01 17:46:09 +0000 2012",
"default_profile": true,
"default_profile_image": false,
"description": "I make apps. My code runs on 100mil+ phones | former iOSdev @Twitter \uD83D\uDC26 | tech, Art & creative coding | @mindGoblinStdio | Download Hivemind⬇️",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "nickdobos.com",
"expanded_url": "http://nickdobos.com",
"url": "https://t.co/nygmuOpYNe",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 266725,
"followers_count": 44517,
"friends_count": 7485,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 1122,
"location": "Seattle, WA",
"media_count": 4093,
"name": "Nick Dobos",
"normal_followers_count": 44517,
"pinned_tweet_ids_str": [
"1866249626153837038"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/856753502/1591147638",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1489416790316748804/iXxGy6-B_normal.png",
"profile_interstitial_type": "",
"screen_name": "NickADobos",
"statuses_count": 37141,
"translator_type": "none",
"url": "https://t.co/nygmuOpYNe",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1660307833320271873",
"professional_type": "Business",
"category": [
{
"id": 962,
"name": "Mobile Application",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {
"is_enabled": true,
"bitcoin_handle": "3AzxRiPNeJabwLCbXVotTDfg5c9kCL4NHy",
"cash_app_handle": "NickDobos",
"venmo_handle": "NickDobos"
},
"super_follow_eligible": true
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870660846877307200"
],
"editable_until_msecs": "1734838875000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "2310",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"legacy": {
"bookmark_count": 9,
"bookmarked": false,
"created_at": "Sun Dec 22 02:41:15 +0000 2024",
"conversation_id_str": "1870660846877307200",
"display_text_range": [
0,
279
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 26,
"favorited": false,
"full_text": "Fun thing I am trying:\nAudiobook or podcast + using Midjourney or luma dream machine as “notes” as I listen\n\nAn interesting way to think &amp; bounce ideas around via visuals\n\nIt’s fun because I get to choose what to “write down” and spawn alternate visual cues &amp; threads for",
"is_quote_status": false,
"lang": "en",
"quote_count": 0,
"reply_count": 3,
"retweet_count": 1,
"retweeted": false,
"user_id_str": "856753502",
"id_str": "1870660846877307200"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"1605246297"
]
},
"clientEventInfo": {
"component": "for_you_in_network",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouInNetwork",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAAFg8ADAMAAAAaAQACAkIAAAAAIAEAAAAAgAAAAAAAAAAAgBAKAA7oPNp8HQVJRAoAELdnAt38ZkPVAAAAAA=="
}
}
}
}
},
{
"entryId": "tweet-1870284047471296778",
"sortIndex": "1870749872412426217",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870284047471296778",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNzE0NDM4MDkyNjU1MTQ5MDU2",
"rest_id": "1714438092655149056",
"affiliates_highlighted_label": {
"label": {
"url": {
"url": "https://twitter.com/OpenAI",
"urlType": "DeepLink"
},
"badge": {
"url": "https://pbs.twimg.com/profile_images/1634058036934500352/b4F1eVpJ_bigger.jpg"
},
"description": "OpenAI",
"userLabelType": "BusinessLabel",
"userLabelDisplayType": "Badge"
}
},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"notifications": true,
"following": true,
"can_dm": true,
"can_media_tag": false,
"created_at": "Wed Oct 18 00:27:53 +0000 2023",
"default_profile": true,
"default_profile_image": false,
"description": "mediocre, but not incompetent, graduate student",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "chat.openai.com",
"expanded_url": "https://chat.openai.com/",
"url": "https://t.co/CcDjv8nFRE",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 635,
"followers_count": 309515,
"friends_count": 166,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 1582,
"location": "Azure Supercomputer",
"media_count": 29,
"name": "ChatGPT",
"normal_followers_count": 309515,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1714438092655149056/1699902570",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1722425721602347008/UWMHieDx_normal.png",
"profile_interstitial_type": "",
"screen_name": "ChatGPTapp",
"statuses_count": 217,
"translator_type": "none",
"url": "https://t.co/CcDjv8nFRE",
"verified": false,
"verified_type": "Business",
"want_retweets": true,
"withheld_in_countries": []
},
"professional": {
"rest_id": "1722426313280213447",
"professional_type": "Business",
"category": [
{
"id": 714,
"name": "Technology Company",
"icon_name": "IconBriefcaseStroke"
}
]
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870284047471296778"
],
"editable_until_msecs": "1734749039000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "107183",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1870169260850573333",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNzczOTM1MTYwMTkyNjQ3MTY4",
"rest_id": "1773935160192647168",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Sat Mar 30 04:48:28 +0000 2024",
"default_profile": true,
"default_profile_image": false,
"description": "A $1M+ competition towards open AGI progress. Co-founded by @fchollet @mikeknoop.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "arcprize.org",
"expanded_url": "https://arcprize.org",
"url": "https://t.co/wQ62Wu4fAu",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3848,
"followers_count": 14271,
"friends_count": 162,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 166,
"location": "Earth",
"media_count": 86,
"name": "ARC Prize",
"normal_followers_count": 14271,
"pinned_tweet_ids_str": [
"1865106283675705590"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1773935160192647168/1717879297",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1800565057493078016/XigYRdTo_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "arcprize",
"statuses_count": 275,
"translator_type": "none",
"url": "https://t.co/wQ62Wu4fAu",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870169260850573333"
],
"editable_until_msecs": "1734721672000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1712842",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 724,
"bookmarked": false,
"created_at": "Fri Dec 20 18:07:52 +0000 2024",
"conversation_id_str": "1870169260850573333",
"display_text_range": [
0,
226
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/uQA47JWkl6",
"expanded_url": "https://x.com/arcprize/status/1870169260850573333/photo/1",
"id_str": "1870167559216984064",
"indices": [
227,
250
],
"media_key": "3_1870167559216984064",
"media_url_https": "https://pbs.twimg.com/media/GfQrfI2WcAAVnhl.jpg",
"type": "photo",
"url": "https://t.co/uQA47JWkl6",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 675,
"w": 1200,
"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": 675,
"width": 1200,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1200,
"h": 672
},
{
"x": 173,
"y": 0,
"w": 675,
"h": 675
},
{
"x": 214,
"y": 0,
"w": 592,
"h": 675
},
{
"x": 341,
"y": 0,
"w": 338,
"h": 675
},
{
"x": 0,
"y": 0,
"w": 1200,
"h": 675
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870167559216984064"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "4398626122",
"name": "OpenAI",
"screen_name": "OpenAI",
"indices": [
32,
39
]
}
]
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/uQA47JWkl6",
"expanded_url": "https://x.com/arcprize/status/1870169260850573333/photo/1",
"id_str": "1870167559216984064",
"indices": [
227,
250
],
"media_key": "3_1870167559216984064",
"media_url_https": "https://pbs.twimg.com/media/GfQrfI2WcAAVnhl.jpg",
"type": "photo",
"url": "https://t.co/uQA47JWkl6",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 675,
"w": 1200,
"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": 675,
"width": 1200,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 1200,
"h": 672
},
{
"x": 173,
"y": 0,
"w": 675,
"h": 675
},
{
"x": 214,
"y": 0,
"w": 592,
"h": 675
},
{
"x": 341,
"y": 0,
"w": 338,
"h": 675
},
{
"x": 0,
"y": 0,
"w": 1200,
"h": 675
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870167559216984064"
}
}
}
]
},
"favorite_count": 3169,
"favorited": false,
"full_text": "New verified ARC-AGI-Pub SoTA!\n\n@OpenAI o3 has scored a breakthrough 75.7% on the ARC-AGI Semi-Private Evaluation.\n\nAnd a high-compute o3 configuration (not eligible for ARC-AGI-Pub) scored 87.5% on the Semi-Private Eval.\n\n1/4 https://t.co/uQA47JWkl6",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 449,
"reply_count": 103,
"retweet_count": 631,
"retweeted": false,
"user_id_str": "1773935160192647168",
"id_str": "1870169260850573333"
}
}
},
"legacy": {
"bookmark_count": 77,
"bookmarked": false,
"created_at": "Sat Dec 21 01:43:59 +0000 2024",
"conversation_id_str": "1870284047471296778",
"display_text_range": [
0,
40
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 1248,
"favorited": false,
"full_text": "smarter and more delightful every month™",
"is_quote_status": true,
"lang": "en",
"quote_count": 4,
"quoted_status_id_str": "1870169260850573333",
"quoted_status_permalink": {
"url": "https://t.co/d3iehlywgf",
"expanded": "https://twitter.com/arcprize/status/1870169260850573333",
"display": "x.com/arcprize/statu…"
},
"reply_count": 61,
"retweet_count": 73,
"retweeted": false,
"user_id_str": "1714438092655149056",
"id_str": "1870284047471296778"
},
"trend_results": {
"rest_id": "1870645427025871068"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"2058108091"
]
},
"clientEventInfo": {
"component": "for_you_simclusters",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouSimclusters",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAEAAEAEgAAoACRWJuPQQCssgCAALAAAAFw8ADAMAAAAZAQACAkIAAAAAIAEQAEAAgAoAAAAAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "tweet-1870302465851289919",
"sortIndex": "1870749872412426216",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870302465851289919",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNjIxMjQ1NDA=",
"rest_id": "162124540",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"notifications": true,
"following": true,
"can_dm": false,
"can_media_tag": true,
"created_at": "Fri Jul 02 19:38:09 +0000 2010",
"default_profile": true,
"default_profile_image": false,
"description": "President & Co-Founder @OpenAI",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "gregbrockman.com",
"expanded_url": "http://gregbrockman.com",
"url": "https://t.co/k4cALifwtx",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 1452,
"followers_count": 740024,
"friends_count": 53,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 7566,
"location": "",
"media_count": 364,
"name": "Greg Brockman",
"normal_followers_count": 740024,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/162124540/1399179172",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1347621377503711233/bHg3ipfD_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "gdb",
"statuses_count": 5196,
"translator_type": "none",
"url": "https://t.co/k4cALifwtx",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870302465851289919"
],
"editable_until_msecs": "1734753431000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "80079",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 55,
"bookmarked": false,
"created_at": "Sat Dec 21 02:57:11 +0000 2024",
"conversation_id_str": "1870302465851289919",
"display_text_range": [
0,
138
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 2169,
"favorited": false,
"full_text": "so proud of the openai team for all that was just shipped. huge amount of work happening behind the scenes for each one of these launches.",
"is_quote_status": false,
"lang": "en",
"quote_count": 5,
"reply_count": 85,
"retweet_count": 73,
"retweeted": false,
"user_id_str": "162124540",
"id_str": "1870302465851289919"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-436942867"
]
},
"clientEventInfo": {
"component": "for_you_simclusters",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouSimclusters",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAEAAEAEgAAoACRWJuPQQCssgCAALAAAAGA8ADAMAAAAZAQACAkIAAAAAIAEQAEAAgAoAAAAAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "promoted-tweet-1864688984359641525-36c04291792cc939",
"sortIndex": "1870749872412426215",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1864688984359641525",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzMwODczODUyODE4MzEzMjI3",
"rest_id": "1330873852818313227",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Mon Nov 23 14:00:37 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "The leading bug bounty platform for blockchain with the world's largest bug bounties. More than $110m paid out to whitehats and $180m in rewards available.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "immunefi.com",
"expanded_url": "https://immunefi.com",
"url": "https://t.co/Y6aJULx0hv",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3796,
"followers_count": 49563,
"friends_count": 689,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 563,
"location": "Launch your bug bounty →",
"media_count": 1414,
"name": "Immunefi",
"normal_followers_count": 49563,
"pinned_tweet_ids_str": [
"1870130667549229279"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1330873852818313227/1733151869",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1863600122057105408/Zpmq8l5A_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "immunefi",
"statuses_count": 6734,
"translator_type": "none",
"url": "https://t.co/Y6aJULx0hv",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"card": {
"rest_id": "https://t.co/aZIgXQKoqb",
"legacy": {
"binding_values": [
{
"key": "photo_image_full_size_large",
"value": {
"image_value": {
"height": 419,
"width": 800,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=jpg&name=800x419"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image",
"value": {
"image_value": {
"height": 147,
"width": 280,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=jpg&name=280x150"
},
"type": "IMAGE"
}
},
{
"key": "description",
"value": {
"string_value": "Find bugs and vulnerabilities on Nucleus and get paid up to $500,000.",
"type": "STRING"
}
},
{
"key": "domain",
"value": {
"string_value": "immunefi.com",
"type": "STRING"
}
},
{
"key": "thumbnail_image_large",
"value": {
"image_value": {
"height": 315,
"width": 600,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=jpg&name=600x600"
},
"type": "IMAGE"
}
},
{
"key": "summary_photo_image_small",
"value": {
"image_value": {
"height": 202,
"width": 386,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=jpg&name=386x202"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image_original",
"value": {
"image_value": {
"height": 630,
"width": 1200,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=jpg&name=orig"
},
"type": "IMAGE"
}
},
{
"key": "site",
"value": {
"scribe_key": "publisher_id",
"type": "USER",
"user_value": {
"id_str": "1330873852818313227",
"path": []
}
}
},
{
"key": "photo_image_full_size_small",
"value": {
"image_value": {
"height": 202,
"width": 386,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=jpg&name=386x202"
},
"type": "IMAGE"
}
},
{
"key": "summary_photo_image_large",
"value": {
"image_value": {
"height": 419,
"width": 800,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=jpg&name=800x419"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image_small",
"value": {
"image_value": {
"height": 76,
"width": 144,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=jpg&name=144x144"
},
"type": "IMAGE"
}
},
{
"key": "creator",
"value": {
"type": "USER",
"user_value": {
"id_str": "1330873852818313227",
"path": []
}
}
},
{
"key": "thumbnail_image_x_large",
"value": {
"image_value": {
"height": 630,
"width": 1200,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=png&name=2048x2048_2_exp"
},
"type": "IMAGE"
}
},
{
"key": "photo_image_full_size_original",
"value": {
"image_value": {
"height": 630,
"width": 1200,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=jpg&name=orig"
},
"type": "IMAGE"
}
},
{
"key": "vanity_url",
"value": {
"scribe_key": "vanity_url",
"string_value": "immunefi.com",
"type": "STRING"
}
},
{
"key": "photo_image_full_size",
"value": {
"image_value": {
"height": 314,
"width": 600,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=jpg&name=600x314"
},
"type": "IMAGE"
}
},
{
"key": "thumbnail_image_color",
"value": {
"image_color_value": {
"palette": [
{
"rgb": {
"blue": 81,
"green": 21,
"red": 30
},
"percentage": 25.03
},
{
"rgb": {
"blue": 23,
"green": 5,
"red": 6
},
"percentage": 16.48
},
{
"rgb": {
"blue": 133,
"green": 36,
"red": 16
},
"percentage": 16.35
},
{
"rgb": {
"blue": 97,
"green": 22,
"red": 105
},
"percentage": 11.98
},
{
"rgb": {
"blue": 145,
"green": 32,
"red": 192
},
"percentage": 8.07
}
]
},
"type": "IMAGE_COLOR"
}
},
{
"key": "title",
"value": {
"string_value": "Nucleus Bug Bounties | Immunefi",
"type": "STRING"
}
},
{
"key": "summary_photo_image_color",
"value": {
"image_color_value": {
"palette": [
{
"rgb": {
"blue": 81,
"green": 21,
"red": 30
},
"percentage": 25.03
},
{
"rgb": {
"blue": 23,
"green": 5,
"red": 6
},
"percentage": 16.48
},
{
"rgb": {
"blue": 133,
"green": 36,
"red": 16
},
"percentage": 16.35
},
{
"rgb": {
"blue": 97,
"green": 22,
"red": 105
},
"percentage": 11.98
},
{
"rgb": {
"blue": 145,
"green": 32,
"red": 192
},
"percentage": 8.07
}
]
},
"type": "IMAGE_COLOR"
}
},
{
"key": "summary_photo_image_x_large",
"value": {
"image_value": {
"height": 630,
"width": 1200,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=png&name=2048x2048_2_exp"
},
"type": "IMAGE"
}
},
{
"key": "summary_photo_image",
"value": {
"image_value": {
"height": 314,
"width": 600,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=jpg&name=600x314"
},
"type": "IMAGE"
}
},
{
"key": "photo_image_full_size_color",
"value": {
"image_color_value": {
"palette": [
{
"rgb": {
"blue": 81,
"green": 21,
"red": 30
},
"percentage": 25.03
},
{
"rgb": {
"blue": 23,
"green": 5,
"red": 6
},
"percentage": 16.48
},
{
"rgb": {
"blue": 133,
"green": 36,
"red": 16
},
"percentage": 16.35
},
{
"rgb": {
"blue": 97,
"green": 22,
"red": 105
},
"percentage": 11.98
},
{
"rgb": {
"blue": 145,
"green": 32,
"red": 192
},
"percentage": 8.07
}
]
},
"type": "IMAGE_COLOR"
}
},
{
"key": "photo_image_full_size_x_large",
"value": {
"image_value": {
"height": 630,
"width": 1200,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=png&name=2048x2048_2_exp"
},
"type": "IMAGE"
}
},
{
"key": "card_url",
"value": {
"scribe_key": "card_url",
"string_value": "https://t.co/aZIgXQKoqb",
"type": "STRING"
}
},
{
"key": "summary_photo_image_original",
"value": {
"image_value": {
"height": 630,
"width": 1200,
"url": "https://pbs.twimg.com/card_img/1869762310316650496/z4fbsZC1?format=jpg&name=orig"
},
"type": "IMAGE"
}
}
],
"card_platform": {
"platform": {
"audience": {
"name": "production"
},
"device": {
"name": "Swift",
"version": "12"
}
}
},
"name": "summary_large_image",
"url": "https://t.co/aZIgXQKoqb",
"user_refs_results": [
{
"result": {
"__typename": "User",
"id": "VXNlcjoxMzMwODczODUyODE4MzEzMjI3",
"rest_id": "1330873852818313227",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Mon Nov 23 14:00:37 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "The leading bug bounty platform for blockchain with the world's largest bug bounties. More than $110m paid out to whitehats and $180m in rewards available.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "immunefi.com",
"expanded_url": "https://immunefi.com",
"url": "https://t.co/Y6aJULx0hv",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3796,
"followers_count": 49563,
"friends_count": 689,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 563,
"location": "Launch your bug bounty →",
"media_count": 1414,
"name": "Immunefi",
"normal_followers_count": 49563,
"pinned_tweet_ids_str": [
"1870130667549229279"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1330873852818313227/1733151869",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1863600122057105408/Zpmq8l5A_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "immunefi",
"statuses_count": 6734,
"translator_type": "none",
"url": "https://t.co/Y6aJULx0hv",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
{
"result": {
"__typename": "User",
"id": "VXNlcjoxMzMwODczODUyODE4MzEzMjI3",
"rest_id": "1330873852818313227",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Mon Nov 23 14:00:37 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "The leading bug bounty platform for blockchain with the world's largest bug bounties. More than $110m paid out to whitehats and $180m in rewards available.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "immunefi.com",
"expanded_url": "https://immunefi.com",
"url": "https://t.co/Y6aJULx0hv",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3796,
"followers_count": 49563,
"friends_count": 689,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 563,
"location": "Launch your bug bounty →",
"media_count": 1414,
"name": "Immunefi",
"normal_followers_count": 49563,
"pinned_tweet_ids_str": [
"1870130667549229279"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1330873852818313227/1733151869",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1863600122057105408/Zpmq8l5A_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "immunefi",
"statuses_count": 6734,
"translator_type": "none",
"url": "https://t.co/Y6aJULx0hv",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
]
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1864688984359641525"
],
"editable_until_msecs": "1733415072000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "1669398",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://twitter.com\" rel=\"nofollow\">TweetDeck Web App</a>",
"legacy": {
"bookmark_count": 6,
"bookmarked": false,
"created_at": "Thu Dec 05 15:11:12 +0000 2024",
"conversation_id_str": "1864688984359641525",
"display_text_range": [
0,
128
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [
{
"display_url": "immunefi.com/bug-bounty/nuc…",
"expanded_url": "https://immunefi.com/bug-bounty/nucleus/information/",
"url": "https://t.co/aZIgXQKoqb",
"indices": [
105,
128
]
}
],
"user_mentions": [
{
"id_str": "1812084003165380608",
"name": "Nucleus",
"screen_name": "nucleusearn",
"indices": [
20,
32
]
}
]
},
"favorite_count": 218,
"favorited": false,
"full_text": "New Bug Bounty! \uD83D\uDE80\uD83D\uDCB0\n\n@nucleusearn is the default yield provider for networks.\n\nFind bugs - get $500,000!\n\nhttps://t.co/aZIgXQKoqb",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 3,
"reply_count": 17,
"retweet_count": 38,
"retweeted": false,
"user_id_str": "1330873852818313227",
"id_str": "1864688984359641525"
}
}
},
"tweetDisplayType": "Tweet",
"promotedMetadata": {
"advertiser_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxMzMwODczODUyODE4MzEzMjI3",
"rest_id": "1330873852818313227",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Square",
"legacy": {
"following": false,
"can_dm": true,
"can_media_tag": true,
"created_at": "Mon Nov 23 14:00:37 +0000 2020",
"default_profile": true,
"default_profile_image": false,
"description": "The leading bug bounty platform for blockchain with the world's largest bug bounties. More than $110m paid out to whitehats and $180m in rewards available.",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "immunefi.com",
"expanded_url": "https://immunefi.com",
"url": "https://t.co/Y6aJULx0hv",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 3796,
"followers_count": 49563,
"friends_count": 689,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 563,
"location": "Launch your bug bounty →",
"media_count": 1414,
"name": "Immunefi",
"normal_followers_count": 49563,
"pinned_tweet_ids_str": [
"1870130667549229279"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1330873852818313227/1733151869",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1863600122057105408/Zpmq8l5A_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "immunefi",
"statuses_count": 6734,
"translator_type": "none",
"url": "https://t.co/Y6aJULx0hv",
"verified": false,
"verified_type": "Business",
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
},
"adMetadataContainer": {
"renderLegacyWebsiteCard": false
},
"disclosureType": "NoDisclosure",
"experimentValues": [
{
"key": "nsfa_htl_experiment_enable",
"value": "10000"
},
{
"key": "nsfa_htl_experimental_threshold_profanity",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_binary",
"value": "1.0"
},
{
"key": "min_gap_for_nsfw_avoidance",
"value": "1"
},
{
"key": "nsfa_htl_experimental_threshold_drugs",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_hate_violence",
"value": "1.0"
},
{
"key": "nsfa_htl_experimental_threshold_sexual",
"value": "1.0"
}
],
"impressionId": "36c04291792cc939",
"impressionString": "36c04291792cc939",
"clickTrackingInfo": {
"urlParams": [
{
"key": "twclid",
"value": "2-pzx90sdg5f7w3c048co299k2"
}
]
}
}
},
"clientEventInfo": {
"component": "for_you_promoted",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouPromoted",
"controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkVibj0EArLIAAAAAA="
}
}
}
}
},
{
"entryId": "tweet-1870661707527573832",
"sortIndex": "1870749872412426214",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870661707527573832",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjo0Mjk1MzM2NDk=",
"rest_id": "429533649",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"notifications": true,
"following": true,
"can_dm": false,
"can_media_tag": false,
"created_at": "Tue Dec 06 02:45:55 +0000 2011",
"default_profile": false,
"default_profile_image": false,
"description": "AI/ML @BandLab. ex @tiktok_us @sutdsg. Machine learning & music tech. \uD83C\uDDF2\uD83C\uDDFE \uD83C\uDDF8\uD83C\uDDEC",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "gudgud96.github.io",
"expanded_url": "https://gudgud96.github.io",
"url": "https://t.co/fcAuKYfcuc",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 2032,
"followers_count": 566,
"friends_count": 763,
"has_custom_timelines": true,
"is_translator": false,
"listed_count": 10,
"location": "",
"media_count": 122,
"name": "Hao Hao Tan",
"normal_followers_count": 566,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/429533649/1532536038",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1346278407399567361/07xD1UOp_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "GoodGood014",
"statuses_count": 4306,
"translator_type": "none",
"url": "https://t.co/fcAuKYfcuc",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870661707527573832"
],
"editable_until_msecs": "1734839080000",
"is_edit_eligible": true,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "130",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"quoted_status_result": {
"result": {
"__typename": "Tweet",
"rest_id": "1870101359036424382",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNDU4Nzg1MjYxNzU2NzEwOTE0",
"rest_id": "1458785261756710914",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"following": false,
"can_dm": false,
"can_media_tag": true,
"created_at": "Thu Nov 11 13:14:56 +0000 2021",
"default_profile": true,
"default_profile_image": false,
"description": "PhD Researcher in AI and Music @CDT_AI_Music @C4DM @QMUL in AI Music",
"entities": {
"description": {
"urls": []
},
"url": {
"urls": [
{
"display_url": "guozixunnicolas.github.io",
"expanded_url": "http://guozixunnicolas.github.io",
"url": "https://t.co/ColgZDzHUN",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 310,
"followers_count": 153,
"friends_count": 153,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 3,
"location": "London, England",
"media_count": 7,
"name": "Zixun Nicolas Guo",
"normal_followers_count": 153,
"pinned_tweet_ids_str": [
"1768635158922420346"
],
"possibly_sensitive": false,
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1573219157768019968/T3M1qhOs_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "nicolasguozixun",
"statuses_count": 58,
"translator_type": "none",
"url": "https://t.co/ColgZDzHUN",
"verified": false,
"want_retweets": false,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870101359036424382"
],
"editable_until_msecs": "1734705483000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "616",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 5,
"bookmarked": false,
"created_at": "Fri Dec 20 13:38:03 +0000 2024",
"conversation_id_str": "1870101359036424382",
"display_text_range": [
0,
272
],
"entities": {
"hashtags": [
{
"indices": [
50,
60
],
"text": "ISMIR2024"
}
],
"media": [
{
"display_url": "pic.x.com/Hqhi2MKATe",
"expanded_url": "https://x.com/nicolasguozixun/status/1870101359036424382/video/1",
"id_str": "1870095434825240576",
"indices": [
273,
296
],
"media_key": "7_1870095434825240576",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1870095434825240576/pu/img/CrS4vnviGEjZWzo7.jpg",
"type": "video",
"url": "https://t.co/Hqhi2MKATe",
"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": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 64600,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/1870095434825240576/pu/pl/vBsurKrlLATMsG6S.m3u8?tag=12"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870095434825240576/pu/vid/avc1/480x270/hlObhnoeWzvg8BCC.mp4?tag=12"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870095434825240576/pu/vid/avc1/640x360/C8sZowtIPN68GpCc.mp4?tag=12"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870095434825240576/pu/vid/avc1/1280x720/iDrqwQ7LYFhBindN.mp4?tag=12"
}
]
},
"media_results": {
"result": {
"media_key": "7_1870095434825240576"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/Hqhi2MKATe",
"expanded_url": "https://x.com/nicolasguozixun/status/1870101359036424382/video/1",
"id_str": "1870095434825240576",
"indices": [
273,
296
],
"media_key": "7_1870095434825240576",
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1870095434825240576/pu/img/CrS4vnviGEjZWzo7.jpg",
"type": "video",
"url": "https://t.co/Hqhi2MKATe",
"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": []
},
"allow_download_status": {
"allow_download": true
},
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 64600,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/1870095434825240576/pu/pl/vBsurKrlLATMsG6S.m3u8?tag=12"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870095434825240576/pu/vid/avc1/480x270/hlObhnoeWzvg8BCC.mp4?tag=12"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870095434825240576/pu/vid/avc1/640x360/C8sZowtIPN68GpCc.mp4?tag=12"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/1870095434825240576/pu/vid/avc1/1280x720/iDrqwQ7LYFhBindN.mp4?tag=12"
}
]
},
"media_results": {
"result": {
"media_key": "7_1870095434825240576"
}
}
}
]
},
"favorite_count": 18,
"favorited": true,
"full_text": "We presented our GAPS classical guitar dataset at #ISMIR2024 a month ago. GAPS includes ~14 hours of freely available classical guitar music recorded in diverse conditions by over 200 performers; time-aligned midi annotations; and music scores (i.e., musicxml). Moreover, https://t.co/Hqhi2MKATe",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 1,
"reply_count": 1,
"retweet_count": 0,
"retweeted": false,
"user_id_str": "1458785261756710914",
"id_str": "1870101359036424382"
}
}
},
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Sun Dec 22 02:44:40 +0000 2024",
"conversation_id_str": "1870661707527573832",
"display_text_range": [
0,
25
],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"favorite_count": 3,
"favorited": true,
"full_text": "This is freaking awesome!",
"is_quote_status": true,
"lang": "en",
"quote_count": 0,
"quoted_status_id_str": "1870101359036424382",
"quoted_status_permalink": {
"url": "https://t.co/9nieNSXidx",
"expanded": "https://twitter.com/nicolasguozixun/status/1870101359036424382",
"display": "x.com/nicolasguozixu…"
},
"reply_count": 0,
"retweet_count": 0,
"retweeted": false,
"user_id_str": "429533649",
"id_str": "1870661707527573832"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"1977329475"
]
},
"clientEventInfo": {
"component": "for_you_in_network",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouInNetwork",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAAAAAAEgAAoACRWJuPQQCssgCAALAAAAGg8ADAMAAAAQAQACAkIAAAAAIAEAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "tweet-1870340930777264403",
"sortIndex": "1870749872412426213",
"content": {
"entryType": "TimelineTimelineItem",
"__typename": "TimelineTimelineItem",
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870340930777264403",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjozOTEyNTc4OA==",
"rest_id": "39125788",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": true,
"profile_image_shape": "Circle",
"legacy": {
"following": true,
"can_dm": true,
"can_media_tag": true,
"created_at": "Sun May 10 22:33:52 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "Professor @Wharton studying AI, innovation & startups. Democratizing education using tech\nBook: https://t.co/CSmipbJ2jV\nSubstack: https://t.co/UIBhxu4bgq",
"entities": {
"description": {
"urls": [
{
"display_url": "a.co/d/4VguzZz",
"expanded_url": "https://a.co/d/4VguzZz",
"url": "https://t.co/CSmipbJ2jV",
"indices": [
96,
119
]
},
{
"display_url": "oneusefulthing.org",
"expanded_url": "https://www.oneusefulthing.org/",
"url": "https://t.co/UIBhxu4bgq",
"indices": [
130,
153
]
}
]
},
"url": {
"urls": [
{
"display_url": "mgmt.wharton.upenn.edu/profile/emolli…",
"expanded_url": "https://mgmt.wharton.upenn.edu/profile/emollick/",
"url": "https://t.co/uItckI9ujc",
"indices": [
0,
23
]
}
]
}
},
"fast_followers_count": 0,
"favourites_count": 6528,
"followers_count": 243991,
"friends_count": 557,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 5578,
"location": "Philadelphia, PA",
"media_count": 12524,
"name": "Ethan Mollick",
"normal_followers_count": 243991,
"pinned_tweet_ids_str": [
"1778174273611293150"
],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/39125788/1713840725",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1601382188712398850/3AAOlqrX_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "emollick",
"statuses_count": 29492,
"translator_type": "none",
"url": "https://t.co/uItckI9ujc",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870340930777264403"
],
"editable_until_msecs": "1734762601000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "181859",
"state": "EnabledWithCount"
},
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"legacy": {
"bookmark_count": 504,
"bookmarked": false,
"created_at": "Sat Dec 21 05:30:01 +0000 2024",
"conversation_id_str": "1870340930777264403",
"display_text_range": [
0,
280
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/qNMbbH3koo",
"expanded_url": "https://x.com/emollick/status/1870340930777264403/photo/1",
"id_str": "1870340925462908928",
"indices": [
281,
304
],
"media_key": "3_1870340925462908928",
"media_url_https": "https://pbs.twimg.com/media/GfTJKYcXkAAOo1_.jpg",
"type": "photo",
"url": "https://t.co/qNMbbH3koo",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1635,
"w": 1320,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 969,
"resize": "fit"
},
"small": {
"h": 680,
"w": 549,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1635,
"width": 1320,
"focus_rects": [
{
"x": 0,
"y": 896,
"w": 1320,
"h": 739
},
{
"x": 0,
"y": 315,
"w": 1320,
"h": 1320
},
{
"x": 0,
"y": 130,
"w": 1320,
"h": 1505
},
{
"x": 204,
"y": 0,
"w": 818,
"h": 1635
},
{
"x": 0,
"y": 0,
"w": 1320,
"h": 1635
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870340925462908928"
}
}
},
{
"display_url": "pic.x.com/qNMbbH3koo",
"expanded_url": "https://x.com/emollick/status/1870340930777264403/photo/1",
"id_str": "1870340925437702144",
"indices": [
281,
304
],
"media_key": "3_1870340925437702144",
"media_url_https": "https://pbs.twimg.com/media/GfTJKYWW8AABcEL.jpg",
"type": "photo",
"url": "https://t.co/qNMbbH3koo",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1936,
"w": 1320,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 818,
"resize": "fit"
},
"small": {
"h": 680,
"w": 464,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1936,
"width": 1320,
"focus_rects": [
{
"x": 0,
"y": 647,
"w": 1320,
"h": 739
},
{
"x": 0,
"y": 356,
"w": 1320,
"h": 1320
},
{
"x": 0,
"y": 264,
"w": 1320,
"h": 1505
},
{
"x": 338,
"y": 0,
"w": 968,
"h": 1936
},
{
"x": 0,
"y": 0,
"w": 1320,
"h": 1936
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870340925437702144"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/qNMbbH3koo",
"expanded_url": "https://x.com/emollick/status/1870340930777264403/photo/1",
"id_str": "1870340925462908928",
"indices": [
281,
304
],
"media_key": "3_1870340925462908928",
"media_url_https": "https://pbs.twimg.com/media/GfTJKYcXkAAOo1_.jpg",
"type": "photo",
"url": "https://t.co/qNMbbH3koo",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1635,
"w": 1320,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 969,
"resize": "fit"
},
"small": {
"h": 680,
"w": 549,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1635,
"width": 1320,
"focus_rects": [
{
"x": 0,
"y": 896,
"w": 1320,
"h": 739
},
{
"x": 0,
"y": 315,
"w": 1320,
"h": 1320
},
{
"x": 0,
"y": 130,
"w": 1320,
"h": 1505
},
{
"x": 204,
"y": 0,
"w": 818,
"h": 1635
},
{
"x": 0,
"y": 0,
"w": 1320,
"h": 1635
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870340925462908928"
}
}
},
{
"display_url": "pic.x.com/qNMbbH3koo",
"expanded_url": "https://x.com/emollick/status/1870340930777264403/photo/1",
"id_str": "1870340925437702144",
"indices": [
281,
304
],
"media_key": "3_1870340925437702144",
"media_url_https": "https://pbs.twimg.com/media/GfTJKYWW8AABcEL.jpg",
"type": "photo",
"url": "https://t.co/qNMbbH3koo",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 1936,
"w": 1320,
"resize": "fit"
},
"medium": {
"h": 1200,
"w": 818,
"resize": "fit"
},
"small": {
"h": 680,
"w": 464,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 1936,
"width": 1320,
"focus_rects": [
{
"x": 0,
"y": 647,
"w": 1320,
"h": 739
},
{
"x": 0,
"y": 356,
"w": 1320,
"h": 1320
},
{
"x": 0,
"y": 264,
"w": 1320,
"h": 1505
},
{
"x": 338,
"y": 0,
"w": 968,
"h": 1936
},
{
"x": 0,
"y": 0,
"w": 1320,
"h": 1936
}
]
},
"allow_download_status": {
"allow_download": true
},
"media_results": {
"result": {
"media_key": "3_1870340925437702144"
}
}
}
]
},
"favorite_count": 2111,
"favorited": false,
"full_text": "Basically think of the o3 results as validating Douglas Adams as the science fiction author most right about AI.\n\nWhen given longer to think, the AI can generate answers to very hard questions, but the cost is very high, and you have to make sure you ask the right question first. https://t.co/qNMbbH3koo",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 33,
"reply_count": 49,
"retweet_count": 227,
"retweeted": false,
"user_id_str": "39125788",
"id_str": "1870340930777264403"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"738278590"
]
},
"clientEventInfo": {
"component": "for_you_simclusters",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouSimclusters",
"controllerData": "DAACDAABDAABCgABAAAAQgICAAEKAAKAAEAAEAEgAAoACRWJuPQQCssgCAALAAAAGw8ADAMAAAAZAQACAkIAAAAAIAEQAEAAgAoAAAAAAAAAgAoADug82nwdBUlECgAQt2cC3fxmQ9UAAAAA"
}
}
}
}
},
{
"entryId": "home-conversation-1870260492033298844",
"sortIndex": "1870749872412426212",
"content": {
"entryType": "TimelineTimelineModule",
"__typename": "TimelineTimelineModule",
"items": [
{
"entryId": "home-conversation-1870260492033298844-tweet-1870260492033298844",
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870260492033298844",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNTAwODc4NzIxODU0NjI3ODQ2",
"rest_id": "1500878721854627846",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"notifications": true,
"protected": true,
"following": true,
"can_dm": true,
"can_media_tag": false,
"created_at": "Mon Mar 07 16:59:24 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "pk_5cffb498e3900fddc38198d387d1e5e7",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 15959,
"followers_count": 47,
"friends_count": 3,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 6,
"location": "",
"media_count": 2058,
"name": "Michael Skyba",
"normal_followers_count": 47,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1500878721854627846/1734670649",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1869924738044166144/aRTs922T_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "sucralose__",
"statuses_count": 5955,
"translator_type": "none",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870260492033298844"
],
"editable_until_msecs": "1734743423000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "30",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Sat Dec 21 00:10:23 +0000 2024",
"conversation_id_str": "1870260492033298844",
"display_text_range": [
0,
80
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/7qbJzUNkJn",
"expanded_url": "https://x.com/sucralose__/status/1870260492033298844/photo/1",
"id_str": "1870260485569810432",
"indices": [
81,
104
],
"media_key": "3_1870260485569810432",
"media_url_https": "https://pbs.twimg.com/media/GfSAAKfWkAAikCs.png",
"type": "photo",
"url": "https://t.co/7qbJzUNkJn",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 285,
"w": 322,
"resize": "fit"
},
"medium": {
"h": 285,
"w": 322,
"resize": "fit"
},
"small": {
"h": 285,
"w": 322,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 285,
"width": 322,
"focus_rects": [
{
"x": 0,
"y": 105,
"w": 322,
"h": 180
},
{
"x": 37,
"y": 0,
"w": 285,
"h": 285
},
{
"x": 72,
"y": 0,
"w": 250,
"h": 285
},
{
"x": 162,
"y": 0,
"w": 143,
"h": 285
},
{
"x": 0,
"y": 0,
"w": 322,
"h": 285
}
]
},
"media_results": {
"result": {
"media_key": "3_1870260485569810432"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/7qbJzUNkJn",
"expanded_url": "https://x.com/sucralose__/status/1870260492033298844/photo/1",
"id_str": "1870260485569810432",
"indices": [
81,
104
],
"media_key": "3_1870260485569810432",
"media_url_https": "https://pbs.twimg.com/media/GfSAAKfWkAAikCs.png",
"type": "photo",
"url": "https://t.co/7qbJzUNkJn",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 285,
"w": 322,
"resize": "fit"
},
"medium": {
"h": 285,
"w": 322,
"resize": "fit"
},
"small": {
"h": 285,
"w": 322,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 285,
"width": 322,
"focus_rects": [
{
"x": 0,
"y": 105,
"w": 322,
"h": 180
},
{
"x": 37,
"y": 0,
"w": 285,
"h": 285
},
{
"x": 72,
"y": 0,
"w": 250,
"h": 285
},
{
"x": 162,
"y": 0,
"w": 143,
"h": 285
},
{
"x": 0,
"y": 0,
"w": 322,
"h": 285
}
]
},
"media_results": {
"result": {
"media_key": "3_1870260485569810432"
}
}
}
]
},
"favorite_count": 2,
"favorited": false,
"full_text": "I can now see exactly when any article was last updated. Any good uses for this? https://t.co/7qbJzUNkJn",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 0,
"reply_count": 2,
"retweet_count": 0,
"retweeted": false,
"user_id_str": "1500878721854627846",
"id_str": "1870260492033298844"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-893668016"
]
},
"clientEventInfo": {
"component": "for_you_in_network",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouInNetwork",
"controllerData": "DAACDAABDAABCgABAAAgQhICAAEKAAKAAAAAAAFACAoACRWJuPQQCssgCAALAAAAHA8ADAMAAAAQAQACEkIgAAAIQAEAAAAAgAoADug82nwdBUlEAAAAAA=="
}
}
}
}
},
{
"entryId": "home-conversation-1870260492033298844-tweet-1870451686118166635",
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870451686118166635",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNTAwODc4NzIxODU0NjI3ODQ2",
"rest_id": "1500878721854627846",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"notifications": true,
"protected": true,
"following": true,
"can_dm": true,
"can_media_tag": false,
"created_at": "Mon Mar 07 16:59:24 +0000 2022",
"default_profile": true,
"default_profile_image": false,
"description": "pk_5cffb498e3900fddc38198d387d1e5e7",
"entities": {
"description": {
"urls": []
}
},
"fast_followers_count": 0,
"favourites_count": 15959,
"followers_count": 47,
"friends_count": 3,
"has_custom_timelines": false,
"is_translator": false,
"listed_count": 6,
"location": "",
"media_count": 2058,
"name": "Michael Skyba",
"normal_followers_count": 47,
"pinned_tweet_ids_str": [],
"possibly_sensitive": false,
"profile_banner_url": "https://pbs.twimg.com/profile_banners/1500878721854627846/1734670649",
"profile_image_url_https": "https://pbs.twimg.com/profile_images/1869924738044166144/aRTs922T_normal.jpg",
"profile_interstitial_type": "",
"screen_name": "sucralose__",
"statuses_count": 5955,
"translator_type": "none",
"verified": false,
"want_retweets": true,
"withheld_in_countries": []
},
"tipjar_settings": {}
}
}
},
"unmention_data": {},
"edit_control": {
"edit_tweet_ids": [
"1870451686118166635"
],
"editable_until_msecs": "1734789007000",
"is_edit_eligible": false,
"edits_remaining": "5"
},
"is_translatable": false,
"views": {
"count": "8",
"state": "EnabledWithCount"
},
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"legacy": {
"bookmark_count": 0,
"bookmarked": false,
"created_at": "Sat Dec 21 12:50:07 +0000 2024",
"conversation_id_str": "1870260492033298844",
"display_text_range": [
0,
34
],
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/tldmsK6gjB",
"expanded_url": "https://x.com/sucralose__/status/1870451686118166635/photo/1",
"id_str": "1870451677784055808",
"indices": [
35,
58
],
"media_key": "3_1870451677784055808",
"media_url_https": "https://pbs.twimg.com/media/GfUt5A_aIAAZYvY.png",
"type": "photo",
"url": "https://t.co/tldmsK6gjB",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 386,
"w": 406,
"resize": "fit"
},
"medium": {
"h": 386,
"w": 406,
"resize": "fit"
},
"small": {
"h": 386,
"w": 406,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 386,
"width": 406,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 406,
"h": 227
},
{
"x": 0,
"y": 0,
"w": 386,
"h": 386
},
{
"x": 0,
"y": 0,
"w": 339,
"h": 386
},
{
"x": 0,
"y": 0,
"w": 193,
"h": 386
},
{
"x": 0,
"y": 0,
"w": 406,
"h": 386
}
]
},
"media_results": {
"result": {
"media_key": "3_1870451677784055808"
}
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"extended_entities": {
"media": [
{
"display_url": "pic.x.com/tldmsK6gjB",
"expanded_url": "https://x.com/sucralose__/status/1870451686118166635/photo/1",
"id_str": "1870451677784055808",
"indices": [
35,
58
],
"media_key": "3_1870451677784055808",
"media_url_https": "https://pbs.twimg.com/media/GfUt5A_aIAAZYvY.png",
"type": "photo",
"url": "https://t.co/tldmsK6gjB",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"small": {
"faces": []
},
"orig": {
"faces": []
}
},
"sizes": {
"large": {
"h": 386,
"w": 406,
"resize": "fit"
},
"medium": {
"h": 386,
"w": 406,
"resize": "fit"
},
"small": {
"h": 386,
"w": 406,
"resize": "fit"
},
"thumb": {
"h": 150,
"w": 150,
"resize": "crop"
}
},
"original_info": {
"height": 386,
"width": 406,
"focus_rects": [
{
"x": 0,
"y": 0,
"w": 406,
"h": 227
},
{
"x": 0,
"y": 0,
"w": 386,
"h": 386
},
{
"x": 0,
"y": 0,
"w": 339,
"h": 386
},
{
"x": 0,
"y": 0,
"w": 193,
"h": 386
},
{
"x": 0,
"y": 0,
"w": 406,
"h": 386
}
]
},
"media_results": {
"result": {
"media_key": "3_1870451677784055808"
}
}
}
]
},
"favorite_count": 0,
"favorited": false,
"full_text": "At least not perfectly even so far https://t.co/tldmsK6gjB",
"in_reply_to_screen_name": "sucralose__",
"in_reply_to_status_id_str": "1870269471706784096",
"in_reply_to_user_id_str": "1500878721854627846",
"is_quote_status": false,
"lang": "en",
"possibly_sensitive": false,
"possibly_sensitive_editable": true,
"quote_count": 0,
"reply_count": 1,
"retweet_count": 0,
"retweeted": false,
"user_id_str": "1500878721854627846",
"id_str": "1870451686118166635"
}
}
},
"tweetDisplayType": "Tweet"
},
"feedbackInfo": {
"feedbackKeys": [
"-543861920"
]
},
"clientEventInfo": {
"component": "for_you_in_network",
"element": "tweet",
"details": {
"timelinesDetails": {
"injectionType": "ForYouInNetwork",
"controllerData": "DAACDAABDAABCgABAAAgQhICAAUKAAKAAAAAAAEACAoACRWJuPQQCssgCAALAAAAHA8ADAMAAAAQBQACEkIgAAAIAAEAAAAAgAoADug82nwdBUlEAAAAAA=="
}
}
}
}
},
{
"entryId": "home-conversation-1870260492033298844-tweet-1870452154227691653",
"item": {
"itemContent": {
"itemType": "TimelineTweet",
"__typename": "TimelineTweet",
"tweet_results": {
"result": {
"__typename": "Tweet",
"rest_id": "1870452154227691653",
"core": {
"user_results": {
"result": {
"__typename": "User",
"id": "VXNlcjoxNTAwODc4NzIxODU0NjI3ODQ2",
"rest_id": "1500878721854627846",
"affiliates_highlighted_label": {},
"has_graduated_access": true,
"is_blue_verified": false,
"profile_image_shape": "Circle",
"legacy": {
"notifications": true,
"protected": true,
"following": true,
"can_dm": true,
"can_media_tag": false,
"created_at": "Mon Mar 07 16:59:24 +0000 2022",
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

@0xdevalias
Copy link
Author

0xdevalias commented Jan 28, 2025

Twitter Bookmark Search

From https://x.com/i/bookmarks

Request method:
GET

Request URL:
https://x.com/i/api/graphql/GDhDQ8NEoAVVI_nwxpNbQg/BookmarkSearchTimeline?variables=%7B%22rawQuery%22%3A%22midi%22%2C%22count%22%3A20%2C%22cursor%22%3A%22DAABCgABGianw8h___sKAAIZsZO7o5qhRQgAAwAAAAIAAA%22%7D&features=%7B%22profile_label_improvements_pcf_label_in_post_enabled%22%3Atrue%2C%22rweb_tipjar_consumption_enabled%22%3Atrue%2C%22responsive_web_graphql_exclude_directive_enabled%22%3Atrue%2C%22verified_phone_label_enabled%22%3Afalse%2C%22creator_subscriptions_tweet_preview_api_enabled%22%3Atrue%2C%22responsive_web_graphql_timeline_navigation_enabled%22%3Atrue%2C%22responsive_web_graphql_skip_user_profile_image_extensions_enabled%22%3Afalse%2C%22premium_content_api_read_enabled%22%3Afalse%2C%22communities_web_enable_tweet_community_results_fetch%22%3Atrue%2C%22c9s_tweet_anatomy_moderator_badge_enabled%22%3Atrue%2C%22responsive_web_grok_analyze_button_fetch_trends_enabled%22%3Afalse%2C%22responsive_web_grok_analyze_post_followups_enabled%22%3Atrue%2C%22responsive_web_jetfuel_frame%22%3Afalse%2C%22responsive_web_grok_share_attachment_enabled%22%3Atrue%2C%22articles_preview_enabled%22%3Atrue%2C%22responsive_web_edit_tweet_api_enabled%22%3Atrue%2C%22graphql_is_translatable_rweb_tweet_is_translatable_enabled%22%3Atrue%2C%22view_counts_everywhere_api_enabled%22%3Atrue%2C%22longform_notetweets_consumption_enabled%22%3Atrue%2C%22responsive_web_twitter_article_tweet_consumption_enabled%22%3Atrue%2C%22tweet_awards_web_tipping_enabled%22%3Afalse%2C%22responsive_web_grok_analysis_button_from_backend%22%3Afalse%2C%22creator_subscriptions_quote_tweet_preview_enabled%22%3Afalse%2C%22freedom_of_speech_not_reach_fetch_enabled%22%3Atrue%2C%22standardized_nudges_misinfo%22%3Atrue%2C%22tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled%22%3Atrue%2C%22rweb_video_timestamps_enabled%22%3Atrue%2C%22longform_notetweets_rich_text_read_enabled%22%3Atrue%2C%22longform_notetweets_inline_media_enabled%22%3Atrue%2C%22responsive_web_grok_image_annotation_enabled%22%3Atrue%2C%22responsive_web_enhance_cards_enabled%22%3Afalse%7D

Params:

variables: {
  "rawQuery": "midi",
  "count": 20,
  "cursor": "DAABCgABGianw8h___sKAAIZsZO7o5qhRQgAAwAAAAIAAA"
}
features: {
    "profile_label_improvements_pcf_label_in_post_enabled": true,
    "rweb_tipjar_consumption_enabled": true,
    "responsive_web_graphql_exclude_directive_enabled": true,
    "verified_phone_label_enabled": false,
    "creator_subscriptions_tweet_preview_api_enabled": true,
    "responsive_web_graphql_timeline_navigation_enabled": true,
    "responsive_web_graphql_skip_user_profile_image_extensions_enabled": false,
    "premium_content_api_read_enabled": false,
    "communities_web_enable_tweet_community_results_fetch": true,
    "c9s_tweet_anatomy_moderator_badge_enabled": true,
    "responsive_web_grok_analyze_button_fetch_trends_enabled": false,
    "responsive_web_grok_analyze_post_followups_enabled": true,
    "responsive_web_jetfuel_frame": false,
    "responsive_web_grok_share_attachment_enabled": true,
    "articles_preview_enabled": true,
    "responsive_web_edit_tweet_api_enabled": true,
    "graphql_is_translatable_rweb_tweet_is_translatable_enabled": true,
    "view_counts_everywhere_api_enabled": true,
    "longform_notetweets_consumption_enabled": true,
    "responsive_web_twitter_article_tweet_consumption_enabled": true,
    "tweet_awards_web_tipping_enabled": false,
    "responsive_web_grok_analysis_button_from_backend": false,
    "creator_subscriptions_quote_tweet_preview_enabled": false,
    "freedom_of_speech_not_reach_fetch_enabled": true,
    "standardized_nudges_misinfo": true,
    "tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled": true,
    "rweb_video_timestamps_enabled": true,
    "longform_notetweets_rich_text_read_enabled": true,
    "longform_notetweets_inline_media_enabled": true,
    "responsive_web_grok_image_annotation_enabled": true,
    "responsive_web_enhance_cards_enabled": false
}

Response:

Response 1
{
  "data": {
    "search_by_raw_query": {
      "bookmarks_search_timeline": {
        "timeline": {
          "instructions": [
            {
              "type": "TimelineClearCache"
            },
            {
              "type": "TimelineAddEntries",
              "entries": [
                {
                  "entryId": "cursor-top-1884377943883382785",
                  "sortIndex": "1884377943883382785",
                  "content": {
                    "entryType": "TimelineTimelineCursor",
                    "__typename": "TimelineTimelineCursor",
                    "value": "DAABCgABGianwY_AJxEIAAMAAAABAAA",
                    "cursorType": "Top"
                  }
                },
                {
                  "entryId": "cursor-bottom-1884377943883382784",
                  "sortIndex": "1884377943883382784",
                  "content": {
                    "entryType": "TimelineTimelineCursor",
                    "__typename": "TimelineTimelineCursor",
                    "value": "DAABCgABGianwY-___4IAAMAAAACAAA",
                    "cursorType": "Bottom"
                  }
                }
              ]
            }
          ],
          "metadata": {
            "scribeConfig": {
              "page": "bookmark_tweet_search"
            }
          }
        }
      }
    }
  }
}
Response 2
{
  "data": {
    "search_by_raw_query": {
      "bookmarks_search_timeline": {
        "timeline": {
          "instructions": [
            {
              "type": "TimelineClearCache"
            },
            {
              "type": "TimelineAddEntries",
              "entries": [
                {
                  "entryId": "tweet-1866593168143290706",
                  "sortIndex": "1884377953425424384",
                  "content": {
                    "entryType": "TimelineTimelineItem",
                    "__typename": "TimelineTimelineItem",
                    "itemContent": {
                      "itemType": "TimelineTweet",
                      "__typename": "TimelineTweet",
                      "tweet_results": {
                        "result": {
                          "__typename": "Tweet",
                          "rest_id": "1866593168143290706",
                          "core": {
                            "user_results": {
                              "result": {
                                "__typename": "User",
                                "id": "VXNlcjoxNDMwMjkzMTg4OTc2MjAxNzMx",
                                "rest_id": "1430293188976201731",
                                "affiliates_highlighted_label": {},
                                "has_graduated_access": true,
                                "parody_commentary_fan_label": "None",
                                "is_blue_verified": true,
                                "profile_image_shape": "Circle",
                                "legacy": {
                                  "notifications": true,
                                  "following": true,
                                  "can_dm": true,
                                  "can_media_tag": true,
                                  "created_at": "Tue Aug 24 22:17:31 +0000 2021",
                                  "default_profile": true,
                                  "default_profile_image": false,
                                  "description": "building ai for music makers at https://t.co/jBobxHayie",
                                  "entities": {
                                    "description": {
                                      "urls": [
                                        {
                                          "display_url": "muse.art",
                                          "expanded_url": "http://muse.art",
                                          "url": "https://t.co/jBobxHayie",
                                          "indices": [
                                            32,
                                            55
                                          ]
                                        }
                                      ]
                                    }
                                  },
                                  "fast_followers_count": 0,
                                  "favourites_count": 5285,
                                  "followers_count": 279,
                                  "friends_count": 193,
                                  "has_custom_timelines": true,
                                  "is_translator": false,
                                  "listed_count": 7,
                                  "location": "SF",
                                  "media_count": 21,
                                  "name": "jake",
                                  "normal_followers_count": 279,
                                  "pinned_tweet_ids_str": [
                                    "1863678801248653375"
                                  ],
                                  "possibly_sensitive": false,
                                  "profile_banner_url": "https://pbs.twimg.com/profile_banners/1430293188976201731/1722197159",
                                  "profile_image_url_https": "https://pbs.twimg.com/profile_images/1857329653062762496/8tJmpn8R_normal.jpg",
                                  "profile_interstitial_type": "",
                                  "screen_name": "naughtt_",
                                  "statuses_count": 297,
                                  "translator_type": "none",
                                  "verified": false,
                                  "want_retweets": true,
                                  "withheld_in_countries": []
                                },
                                "tipjar_settings": {}
                              }
                            }
                          },
                          "unmention_data": {},
                          "edit_control": {
                            "edit_tweet_ids": [
                              "1866593168143290706"
                            ],
                            "editable_until_msecs": "1733869065000",
                            "is_edit_eligible": false,
                            "edits_remaining": "5"
                          },
                          "is_translatable": false,
                          "views": {
                            "count": "323",
                            "state": "EnabledWithCount"
                          },
                          "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
                          "legacy": {
                            "bookmark_count": 3,
                            "bookmarked": true,
                            "created_at": "Tue Dec 10 21:17:45 +0000 2024",
                            "conversation_id_str": "1866593168143290706",
                            "display_text_range": [
                              0,
                              259
                            ],
                            "entities": {
                              "hashtags": [],
                              "media": [
                                {
                                  "display_url": "pic.x.com/skzJO8F9JK",
                                  "expanded_url": "https://x.com/naughtt_/status/1866593168143290706/video/1",
                                  "id_str": "1866592828807319555",
                                  "indices": [
                                    260,
                                    283
                                  ],
                                  "media_key": "7_1866592828807319555",
                                  "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1866592828807319555/pu/img/DbcJ98-401WgsQLy.jpg",
                                  "type": "video",
                                  "url": "https://t.co/skzJO8F9JK",
                                  "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": []
                                  },
                                  "allow_download_status": {
                                    "allow_download": true
                                  },
                                  "video_info": {
                                    "aspect_ratio": [
                                      16,
                                      9
                                    ],
                                    "duration_millis": 41100,
                                    "variants": [
                                      {
                                        "content_type": "application/x-mpegURL",
                                        "url": "https://video.twimg.com/ext_tw_video/1866592828807319555/pu/pl/Tn9cwqY5GuQKVc6P.m3u8?tag=14"
                                      },
                                      {
                                        "bitrate": 256000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1866592828807319555/pu/vid/avc1/480x270/TUAKbnzchKE_VFCU.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 832000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1866592828807319555/pu/vid/avc1/640x360/FzD-vBCTnuavlWwo.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 2176000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1866592828807319555/pu/vid/avc1/1280x720/u2zoCZrM-JDPSWUd.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 10368000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1866592828807319555/pu/vid/avc1/1920x1080/U2hxQDMJo3IJDPHI.mp4?tag=14"
                                      }
                                    ]
                                  },
                                  "media_results": {
                                    "result": {
                                      "media_key": "7_1866592828807319555"
                                    }
                                  }
                                }
                              ],
                              "symbols": [],
                              "timestamps": [],
                              "urls": [],
                              "user_mentions": []
                            },
                            "extended_entities": {
                              "media": [
                                {
                                  "display_url": "pic.x.com/skzJO8F9JK",
                                  "expanded_url": "https://x.com/naughtt_/status/1866593168143290706/video/1",
                                  "id_str": "1866592828807319555",
                                  "indices": [
                                    260,
                                    283
                                  ],
                                  "media_key": "7_1866592828807319555",
                                  "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1866592828807319555/pu/img/DbcJ98-401WgsQLy.jpg",
                                  "type": "video",
                                  "url": "https://t.co/skzJO8F9JK",
                                  "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": []
                                  },
                                  "allow_download_status": {
                                    "allow_download": true
                                  },
                                  "video_info": {
                                    "aspect_ratio": [
                                      16,
                                      9
                                    ],
                                    "duration_millis": 41100,
                                    "variants": [
                                      {
                                        "content_type": "application/x-mpegURL",
                                        "url": "https://video.twimg.com/ext_tw_video/1866592828807319555/pu/pl/Tn9cwqY5GuQKVc6P.m3u8?tag=14"
                                      },
                                      {
                                        "bitrate": 256000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1866592828807319555/pu/vid/avc1/480x270/TUAKbnzchKE_VFCU.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 832000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1866592828807319555/pu/vid/avc1/640x360/FzD-vBCTnuavlWwo.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 2176000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1866592828807319555/pu/vid/avc1/1280x720/u2zoCZrM-JDPSWUd.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 10368000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1866592828807319555/pu/vid/avc1/1920x1080/U2hxQDMJo3IJDPHI.mp4?tag=14"
                                      }
                                    ]
                                  },
                                  "media_results": {
                                    "result": {
                                      "media_key": "7_1866592828807319555"
                                    }
                                  }
                                }
                              ]
                            },
                            "favorite_count": 14,
                            "favorited": true,
                            "full_text": "New update for Muse Text to MIDI (v0.9.5)\n- Time signature control!\n- Free duration selection between 2-16 bars\n- Bug fixes and minor UI updates\n- Quality of life updates like the ability to cancel in progress generations, and support for like/dislike buttons https://t.co/skzJO8F9JK",
                            "is_quote_status": false,
                            "lang": "en",
                            "possibly_sensitive": false,
                            "possibly_sensitive_editable": true,
                            "quote_count": 0,
                            "reply_count": 2,
                            "retweet_count": 1,
                            "retweeted": true,
                            "user_id_str": "1430293188976201731",
                            "id_str": "1866593168143290706"
                          }
                        }
                      },
                      "tweetDisplayType": "Tweet"
                    },
                    "clientEventInfo": {
                      "component": "suggest_recap",
                      "element": "tweet",
                      "details": {
                        "timelinesDetails": {
                          "injectionType": "Recap"
                        }
                      }
                    }
                  }
                },
                {
                  "entryId": "tweet-1863678801248653375",
                  "sortIndex": "1884377953425424383",
                  "content": {
                    "entryType": "TimelineTimelineItem",
                    "__typename": "TimelineTimelineItem",
                    "itemContent": {
                      "itemType": "TimelineTweet",
                      "__typename": "TimelineTweet",
                      "tweet_results": {
                        "result": {
                          "__typename": "Tweet",
                          "rest_id": "1863678801248653375",
                          "core": {
                            "user_results": {
                              "result": {
                                "__typename": "User",
                                "id": "VXNlcjoxNDMwMjkzMTg4OTc2MjAxNzMx",
                                "rest_id": "1430293188976201731",
                                "affiliates_highlighted_label": {},
                                "has_graduated_access": true,
                                "parody_commentary_fan_label": "None",
                                "is_blue_verified": true,
                                "profile_image_shape": "Circle",
                                "legacy": {
                                  "notifications": true,
                                  "following": true,
                                  "can_dm": true,
                                  "can_media_tag": true,
                                  "created_at": "Tue Aug 24 22:17:31 +0000 2021",
                                  "default_profile": true,
                                  "default_profile_image": false,
                                  "description": "building ai for music makers at https://t.co/jBobxHayie",
                                  "entities": {
                                    "description": {
                                      "urls": [
                                        {
                                          "display_url": "muse.art",
                                          "expanded_url": "http://muse.art",
                                          "url": "https://t.co/jBobxHayie",
                                          "indices": [
                                            32,
                                            55
                                          ]
                                        }
                                      ]
                                    }
                                  },
                                  "fast_followers_count": 0,
                                  "favourites_count": 5285,
                                  "followers_count": 279,
                                  "friends_count": 193,
                                  "has_custom_timelines": true,
                                  "is_translator": false,
                                  "listed_count": 7,
                                  "location": "SF",
                                  "media_count": 21,
                                  "name": "jake",
                                  "normal_followers_count": 279,
                                  "pinned_tweet_ids_str": [
                                    "1863678801248653375"
                                  ],
                                  "possibly_sensitive": false,
                                  "profile_banner_url": "https://pbs.twimg.com/profile_banners/1430293188976201731/1722197159",
                                  "profile_image_url_https": "https://pbs.twimg.com/profile_images/1857329653062762496/8tJmpn8R_normal.jpg",
                                  "profile_interstitial_type": "",
                                  "screen_name": "naughtt_",
                                  "statuses_count": 297,
                                  "translator_type": "none",
                                  "verified": false,
                                  "want_retweets": true,
                                  "withheld_in_countries": []
                                },
                                "tipjar_settings": {}
                              }
                            }
                          },
                          "unmention_data": {},
                          "edit_control": {
                            "edit_tweet_ids": [
                              "1863678801248653375"
                            ],
                            "editable_until_msecs": "1733174226000",
                            "is_edit_eligible": false,
                            "edits_remaining": "5"
                          },
                          "is_translatable": false,
                          "views": {
                            "count": "15634",
                            "state": "EnabledWithCount"
                          },
                          "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
                          "legacy": {
                            "bookmark_count": 67,
                            "bookmarked": true,
                            "created_at": "Mon Dec 02 20:17:06 +0000 2024",
                            "conversation_id_str": "1863678801248653375",
                            "display_text_range": [
                              0,
                              72
                            ],
                            "entities": {
                              "hashtags": [],
                              "media": [
                                {
                                  "display_url": "pic.x.com/UeEF4wwFgt",
                                  "expanded_url": "https://x.com/naughtt_/status/1863678801248653375/video/1",
                                  "id_str": "1863678148413665280",
                                  "indices": [
                                    73,
                                    96
                                  ],
                                  "media_key": "7_1863678148413665280",
                                  "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1863678148413665280/pu/img/6dRCL7uYkpoPnxb9.jpg",
                                  "type": "video",
                                  "url": "https://t.co/UeEF4wwFgt",
                                  "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": []
                                  },
                                  "allow_download_status": {
                                    "allow_download": true
                                  },
                                  "video_info": {
                                    "aspect_ratio": [
                                      16,
                                      9
                                    ],
                                    "duration_millis": 78460,
                                    "variants": [
                                      {
                                        "content_type": "application/x-mpegURL",
                                        "url": "https://video.twimg.com/ext_tw_video/1863678148413665280/pu/pl/bY1BHBIjzgWu4dSS.m3u8?tag=14&v=958"
                                      },
                                      {
                                        "bitrate": 256000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1863678148413665280/pu/vid/avc1/480x270/X_s6qs0ANuDviCjK.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 832000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1863678148413665280/pu/vid/avc1/640x360/gk_Tj3gdTUBgRWbc.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 2176000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1863678148413665280/pu/vid/avc1/1280x720/0b5OO3VlLomarf_u.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 10368000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1863678148413665280/pu/vid/avc1/1920x1080/OXlGp9o4hZKVoSb6.mp4?tag=14"
                                      }
                                    ]
                                  },
                                  "media_results": {
                                    "result": {
                                      "media_key": "7_1863678148413665280"
                                    }
                                  }
                                }
                              ],
                              "symbols": [],
                              "timestamps": [],
                              "urls": [],
                              "user_mentions": []
                            },
                            "extended_entities": {
                              "media": [
                                {
                                  "display_url": "pic.x.com/UeEF4wwFgt",
                                  "expanded_url": "https://x.com/naughtt_/status/1863678801248653375/video/1",
                                  "id_str": "1863678148413665280",
                                  "indices": [
                                    73,
                                    96
                                  ],
                                  "media_key": "7_1863678148413665280",
                                  "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1863678148413665280/pu/img/6dRCL7uYkpoPnxb9.jpg",
                                  "type": "video",
                                  "url": "https://t.co/UeEF4wwFgt",
                                  "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": []
                                  },
                                  "allow_download_status": {
                                    "allow_download": true
                                  },
                                  "video_info": {
                                    "aspect_ratio": [
                                      16,
                                      9
                                    ],
                                    "duration_millis": 78460,
                                    "variants": [
                                      {
                                        "content_type": "application/x-mpegURL",
                                        "url": "https://video.twimg.com/ext_tw_video/1863678148413665280/pu/pl/bY1BHBIjzgWu4dSS.m3u8?tag=14&v=958"
                                      },
                                      {
                                        "bitrate": 256000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1863678148413665280/pu/vid/avc1/480x270/X_s6qs0ANuDviCjK.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 832000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1863678148413665280/pu/vid/avc1/640x360/gk_Tj3gdTUBgRWbc.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 2176000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1863678148413665280/pu/vid/avc1/1280x720/0b5OO3VlLomarf_u.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 10368000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1863678148413665280/pu/vid/avc1/1920x1080/OXlGp9o4hZKVoSb6.mp4?tag=14"
                                      }
                                    ]
                                  },
                                  "media_results": {
                                    "result": {
                                      "media_key": "7_1863678148413665280"
                                    }
                                  }
                                }
                              ]
                            },
                            "favorite_count": 128,
                            "favorited": true,
                            "full_text": "Generative Text to MIDI AI for Ableton \n\nBeta is out now, give it a try! https://t.co/UeEF4wwFgt",
                            "is_quote_status": false,
                            "lang": "en",
                            "possibly_sensitive": false,
                            "possibly_sensitive_editable": true,
                            "quote_count": 14,
                            "reply_count": 12,
                            "retweet_count": 28,
                            "retweeted": false,
                            "user_id_str": "1430293188976201731",
                            "id_str": "1863678801248653375"
                          }
                        }
                      },
                      "tweetDisplayType": "Tweet"
                    },
                    "clientEventInfo": {
                      "component": "suggest_recap",
                      "element": "tweet",
                      "details": {
                        "timelinesDetails": {
                          "injectionType": "Recap"
                        }
                      }
                    }
                  }
                },
                {
                  "entryId": "tweet-1851423355938971973",
                  "sortIndex": "1884377953425424382",
                  "content": {
                    "entryType": "TimelineTimelineItem",
                    "__typename": "TimelineTimelineItem",
                    "itemContent": {
                      "itemType": "TimelineTweet",
                      "__typename": "TimelineTweet",
                      "tweet_results": {
                        "result": {
                          "__typename": "Tweet",
                          "rest_id": "1851423355938971973",
                          "core": {
                            "user_results": {
                              "result": {
                                "__typename": "User",
                                "id": "VXNlcjoxNDMwMjkzMTg4OTc2MjAxNzMx",
                                "rest_id": "1430293188976201731",
                                "affiliates_highlighted_label": {},
                                "has_graduated_access": true,
                                "parody_commentary_fan_label": "None",
                                "is_blue_verified": true,
                                "profile_image_shape": "Circle",
                                "legacy": {
                                  "notifications": true,
                                  "following": true,
                                  "can_dm": true,
                                  "can_media_tag": true,
                                  "created_at": "Tue Aug 24 22:17:31 +0000 2021",
                                  "default_profile": true,
                                  "default_profile_image": false,
                                  "description": "building ai for music makers at https://t.co/jBobxHayie",
                                  "entities": {
                                    "description": {
                                      "urls": [
                                        {
                                          "display_url": "muse.art",
                                          "expanded_url": "http://muse.art",
                                          "url": "https://t.co/jBobxHayie",
                                          "indices": [
                                            32,
                                            55
                                          ]
                                        }
                                      ]
                                    }
                                  },
                                  "fast_followers_count": 0,
                                  "favourites_count": 5285,
                                  "followers_count": 279,
                                  "friends_count": 193,
                                  "has_custom_timelines": true,
                                  "is_translator": false,
                                  "listed_count": 7,
                                  "location": "SF",
                                  "media_count": 21,
                                  "name": "jake",
                                  "normal_followers_count": 279,
                                  "pinned_tweet_ids_str": [
                                    "1863678801248653375"
                                  ],
                                  "possibly_sensitive": false,
                                  "profile_banner_url": "https://pbs.twimg.com/profile_banners/1430293188976201731/1722197159",
                                  "profile_image_url_https": "https://pbs.twimg.com/profile_images/1857329653062762496/8tJmpn8R_normal.jpg",
                                  "profile_interstitial_type": "",
                                  "screen_name": "naughtt_",
                                  "statuses_count": 297,
                                  "translator_type": "none",
                                  "verified": false,
                                  "want_retweets": true,
                                  "withheld_in_countries": []
                                },
                                "tipjar_settings": {}
                              }
                            }
                          },
                          "unmention_data": {},
                          "edit_control": {
                            "edit_tweet_ids": [
                              "1851423355938971973"
                            ],
                            "editable_until_msecs": "1730252300000",
                            "is_edit_eligible": true,
                            "edits_remaining": "5"
                          },
                          "is_translatable": false,
                          "views": {
                            "count": "2594",
                            "state": "EnabledWithCount"
                          },
                          "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
                          "legacy": {
                            "bookmark_count": 5,
                            "bookmarked": true,
                            "created_at": "Wed Oct 30 00:38:20 +0000 2024",
                            "conversation_id_str": "1851423355938971973",
                            "display_text_range": [
                              0,
                              44
                            ],
                            "entities": {
                              "hashtags": [],
                              "media": [
                                {
                                  "display_url": "pic.x.com/a0RzrfrfVd",
                                  "expanded_url": "https://x.com/naughtt_/status/1851423355938971973/video/1",
                                  "id_str": "1851422994452922373",
                                  "indices": [
                                    45,
                                    68
                                  ],
                                  "media_key": "7_1851422994452922373",
                                  "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1851422994452922373/pu/img/HvCoSgQlnrvAuTyR.jpg",
                                  "type": "video",
                                  "url": "https://t.co/a0RzrfrfVd",
                                  "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": []
                                  },
                                  "allow_download_status": {
                                    "allow_download": true
                                  },
                                  "video_info": {
                                    "aspect_ratio": [
                                      16,
                                      9
                                    ],
                                    "duration_millis": 95133,
                                    "variants": [
                                      {
                                        "content_type": "application/x-mpegURL",
                                        "url": "https://video.twimg.com/ext_tw_video/1851422994452922373/pu/pl/Ad_sNME4YR45VCvi.m3u8?tag=14"
                                      },
                                      {
                                        "bitrate": 256000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1851422994452922373/pu/vid/avc1/480x270/2Kyj-O27VcCOr2BY.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 832000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1851422994452922373/pu/vid/avc1/640x360/B_uHcZ1hS151Rg1T.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 2176000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1851422994452922373/pu/vid/avc1/1280x720/XNWLj63qm9MCO4-v.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 10368000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1851422994452922373/pu/vid/avc1/1920x1080/KMEUL3xtX0B8J13H.mp4?tag=14"
                                      }
                                    ]
                                  },
                                  "media_results": {
                                    "result": {
                                      "media_key": "7_1851422994452922373"
                                    }
                                  }
                                }
                              ],
                              "symbols": [],
                              "timestamps": [],
                              "urls": [],
                              "user_mentions": []
                            },
                            "extended_entities": {
                              "media": [
                                {
                                  "display_url": "pic.x.com/a0RzrfrfVd",
                                  "expanded_url": "https://x.com/naughtt_/status/1851423355938971973/video/1",
                                  "id_str": "1851422994452922373",
                                  "indices": [
                                    45,
                                    68
                                  ],
                                  "media_key": "7_1851422994452922373",
                                  "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1851422994452922373/pu/img/HvCoSgQlnrvAuTyR.jpg",
                                  "type": "video",
                                  "url": "https://t.co/a0RzrfrfVd",
                                  "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": []
                                  },
                                  "allow_download_status": {
                                    "allow_download": true
                                  },
                                  "video_info": {
                                    "aspect_ratio": [
                                      16,
                                      9
                                    ],
                                    "duration_millis": 95133,
                                    "variants": [
                                      {
                                        "content_type": "application/x-mpegURL",
                                        "url": "https://video.twimg.com/ext_tw_video/1851422994452922373/pu/pl/Ad_sNME4YR45VCvi.m3u8?tag=14"
                                      },
                                      {
                                        "bitrate": 256000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1851422994452922373/pu/vid/avc1/480x270/2Kyj-O27VcCOr2BY.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 832000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1851422994452922373/pu/vid/avc1/640x360/B_uHcZ1hS151Rg1T.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 2176000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1851422994452922373/pu/vid/avc1/1280x720/XNWLj63qm9MCO4-v.mp4?tag=14"
                                      },
                                      {
                                        "bitrate": 10368000,
                                        "content_type": "video/mp4",
                                        "url": "https://video.twimg.com/ext_tw_video/1851422994452922373/pu/vid/avc1/1920x1080/KMEUL3xtX0B8J13H.mp4?tag=14"
                                      }
                                    ]
                                  },
                                  "media_results": {
                                    "result": {
                                      "media_key": "7_1851422994452922373"
                                    }
                                  }
                                }
                              ]
                            },
                            "favorite_count": 16,
                            "favorited": true,
                            "full_text": "Text guided MIDI generation in Ableton (M4L) https://t.co/a0RzrfrfVd",
                            "is_quote_status": false,
                            "lang": "en",
                            "possibly_sensitive": false,
                            "possibly_sensitive_editable": true,
                            "quote_count": 0,
                            "reply_count": 3,
                            "retweet_count": 3,
                            "retweeted": true,
                            "user_id_str": "1430293188976201731",
                            "id_str": "1851423355938971973"
                          }
                        }
                      },
                      "tweetDisplayType": "Tweet"
                    },
                    "clientEventInfo": {
                      "component": "suggest_recap",
                      "element": "tweet",
                      "details": {
                        "timelinesDetails": {
                          "injectionType": "Recap"
                        }
                      }
                    }
                  }
                },
                {
                  "entryId": "cursor-top-1884377953425424385",
                  "sortIndex": "1884377953425424385",
                  "content": {
                    "entryType": "TimelineTimelineCursor",
                    "__typename": "TimelineTimelineCursor",
                    "value": "DAABCgABGianw8iAJxEKAAIZ53iYx1oRUggAAwAAAAEAAA",
                    "cursorType": "Top"
                  }
                },
                {
                  "entryId": "cursor-bottom-1884377953425424381",
                  "sortIndex": "1884377953425424381",
                  "content": {
                    "entryType": "TimelineTimelineCursor",
                    "__typename": "TimelineTimelineCursor",
                    "value": "DAABCgABGianw8h___sKAAIZsZO7o5qhRQgAAwAAAAIAAA",
                    "cursorType": "Bottom"
                  }
                }
              ]
            }
          ],
          "metadata": {
            "scribeConfig": {
              "page": "bookmark_tweet_search"
            }
          }
        }
      }
    }
  }
}
Response 3
{
  "data": {
    "search_by_raw_query": {
      "bookmarks_search_timeline": {
        "timeline": {
          "instructions": [
            {
              "type": "TimelineAddEntries",
              "entries": [
                {
                  "entryId": "cursor-top-1884377953425424380",
                  "sortIndex": "1884377953425424380",
                  "content": {
                    "entryType": "TimelineTimelineCursor",
                    "__typename": "TimelineTimelineCursor",
                    "value": "DAABCgABGianw8iAJwwKAAIZsZO7o5qhRQgAAwAAAAEAAA",
                    "cursorType": "Top"
                  }
                },
                {
                  "entryId": "cursor-bottom-1884377953425424379",
                  "sortIndex": "1884377953425424379",
                  "content": {
                    "entryType": "TimelineTimelineCursor",
                    "__typename": "TimelineTimelineCursor",
                    "value": "DAABCgABGianw8h___kKAAIZsZO7o5qhRQgAAwAAAAIAAA",
                    "cursorType": "Bottom"
                  }
                }
              ]
            }
          ],
          "metadata": {
            "scribeConfig": {
              "page": "bookmark_tweet_search"
            }
          }
        }
      }
    }
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment