Search

GET/tw-v2/search

Description

Search for tweets, users, or other content on the platform. Supports various search operators and filters.

Parameters

ParameterTypeRequiredDescription
querystringrequiredSearch query string. Supports advanced search operators.
typestringrequiredType of search results (Latest, Top, People, Photos, Videos)
cursorstringoptionalPagination cursor for fetching next page of results. Obtained from previous response.

Code Examples

const params = new URLSearchParams({
  query: 'javascript',
  type: 'Latest'
});

const response = await fetch(`https://api.tweetapi.com/tw-v2/search?${params}`, {
  method: 'GET',
  headers: {
    'X-API-Key': 'YOUR_API_KEY'
  }
});

const data = await response.json();
console.log(data);

Search Operators

You can use advanced search operators in the query parameter to filter and refine your results. Combine multiple operators together for precise queries (e.g. from:sample_user_96991 min_faves:1000 filter:images).

Basic Query Syntax

OperatorDescription
keyword1 keyword2Both terms must appear in the tweet (AND logic)
"exact phrase"Matches the exact phrase in the specified order
keyword1 OR keyword2Either term must appear in the tweet
-keywordExcludes tweets containing the specified term. Also works with phrases: -"exact phrase"
#hashtagMatches tweets containing a specific hashtag
$TSLAMatches tweets containing a cashtag (stock ticker symbol)

Users

OperatorDescription
from:usernameReturns tweets sent by a specific user
to:usernameReturns tweets that are replies to a specific user
@usernameReturns tweets mentioning a specific user. Use with -from:username to exclude their own tweets
list:listIdReturns tweets from members of a given public list
filter:verifiedLimits results to legacy verified accounts
filter:blue_verifiedLimits results to users with a paid verification
source:appNameTweets posted from a specific app or client (e.g. source:Twitter_for_iPhone)

Tweet Type

OperatorDescription
filter:nativeretweetsOnly native retweets (via the retweet button)
include:nativeretweetsIncludes native retweets in results (excluded by default)
filter:retweetsIncludes old-style "RT" retweets and quoted tweets
filter:repliesOnly tweets that are replies
filter:self_threadsOnly self-replies (tweets within a user's own thread)
conversation_id:tweetIdAll tweets within a specific conversation thread
filter:quoteOnly tweets that contain a quote tweet
quoted_tweet_id:tweetIdTweets that quote a specific tweet
quoted_user_id:userIdTweets that quote any tweet by a specific user
card_name:animated_gifTweets containing GIFs
card_name:poll2choice_text_onlyTweets with a 2-choice text poll
card_name:poll3choice_text_onlyTweets with a 3-choice text poll
card_name:poll4choice_text_onlyTweets with a 4-choice text poll
card_name:summaryTweets with a small image summary card
card_name:summary_large_imageTweets with a large image summary card
card_name:playerTweets with an embedded player card (audio/video)

Date & Time

OperatorDescription
until:YYYY-MM-DDTweets before a given date (not inclusive)
since:YYYY-MM-DDTweets on or after a given date (inclusive)
since_time:timestampTweets on or after a Unix timestamp (seconds)
until_time:timestampTweets before a Unix timestamp (seconds)
since_id:tweetIdTweets after a specific tweet ID (not inclusive)
max_id:tweetIdTweets at or before a specific tweet ID (inclusive)
within_time:durationTweets from the last N days/hours/minutes/seconds (e.g. 2d, 5h, 30m)

Content

OperatorDescription
url:domainTweets containing a link to a specific domain or subdomain
lang:codeTweets in a specific language (ISO code, e.g. en, ja). May not always be accurate

Location

OperatorDescription
near:cityTweets geotagged near a specific location
within:radiusUsed with near: to set a search radius (e.g. 15mi)
geocode:lat,long,radiusTweets within a geographic radius of specific coordinates
place:placeIdTweets tagged with a specific place ID

Engagement

OperatorDescription
filter:has_engagementTweets with at least some engagement (replies, likes, or retweets)
min_retweets:NTweets with at least N retweets
min_faves:NTweets with at least N likes
min_replies:NTweets with at least N replies
-min_retweets:NTweets with fewer than N retweets
-min_faves:NTweets with fewer than N likes
-min_replies:NTweets with fewer than N replies
OperatorDescription
filter:mediaTweets containing any type of media
filter:twimgTweets with native images (pic.twitter.com)
filter:imagesTweets containing any images
filter:videosTweets containing any video (native or external)
filter:native_videoTweets with hosted video only
filter:consumer_videoTweets with standard native video
filter:pro_videoTweets with pro video
filter:periscopeTweets with Periscope streams
filter:vineTweets with Vine videos
filter:spacesTweets linked to Spaces
filter:linksTweets containing any URL (including media links)
filter:mentionsTweets containing any @sample_user_95281
filter:newsTweets containing a link to a news article
filter:safeExcludes NSFW content from results
filter:hashtagsTweets containing at least one hashtag

Response

Success Response (200 OK)

200
{
  "data": [
    {
      "id": "5008544259011533649",
      "conversationId": "5008544259011533649",
      "text": "Sample post text 92982 for documentation.",
      "displayTextRange": [
        0,
        106
      ],
      "author": {
        "id": "10052560",
        "username": "sample_user_15807",
        "name": "Sample User 15807",
        "bio": "Sample profile bio for Sample User 15807.",
        "location": "Sample City 850",
        "website": "https://example.com/link-94089/profile-29900/profile-01348",
        "pinnedTweetIds": [],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-01348.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-01348.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": true,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": false,
        "defaultProfileImage": false,
        "followerCount": 1035,
        "followingCount": 1263,
        "tweetCount": 30315,
        "listedCount": 22,
        "mediaCount": 2641,
        "favoritesCount": 26629,
        "createdAt": "2009-10-02T04:50:43.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 0,
      "media": [],
      "poll": null,
      "card": {
        "name": "",
        "url": "https://example.com/link-94089/profile-29900/link-44694",
        "cardType": "",
        "type": "summary",
        "bindingValues": {
          "title": "",
          "description": "",
          "domain": "",
          "thumbnailImageUrl": null,
          "thumbnailImageColor": null,
          "playerUrl": null,
          "playerWidth": null,
          "playerHeight": null,
          "appId": null,
          "appName": null,
          "appStarRating": null,
          "appPriceAmount": null,
          "appPriceCurrency": null
        },
        "cardPlatform": {
          "platform": {
            "device": {
              "name": "",
              "version": ""
            },
            "audience": {
              "name": ""
            }
          }
        },
        "vanityUrl": null,
        "userRefsResults": null
      },
      "hashtags": [
        "sample_topic_32478"
      ],
      "mentions": [],
      "urls": [
        "https://example.com/link-94089/link-68849"
      ],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": true,
      "lang": "ja",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:52:05.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5001104622824944120",
      "conversationId": "5001104622824944120",
      "text": "Sample post text 50780 for documentation.",
      "displayTextRange": [
        0,
        217
      ],
      "author": {
        "id": "1005062105916925213",
        "username": "sample_user_63109",
        "name": "Sample User 63109",
        "bio": "Sample profile bio for Sample User 63109.",
        "location": null,
        "website": null,
        "pinnedTweetIds": [],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-89086.jpg",
        "banner": null,
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": false,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": true,
        "defaultProfileImage": false,
        "followerCount": 4,
        "followingCount": 59,
        "tweetCount": 582,
        "listedCount": 0,
        "mediaCount": 64,
        "favoritesCount": 1193,
        "createdAt": "2024-06-20T19:08:42.000Z"
      },
      "source": null,
      "type": "quote",
      "replyTo": null,
      "quotedTweet": {
        "id": "5002041994614812665",
        "conversationId": "5002041994614812665",
        "text": "Sample post text 04487 for documentation.",
        "displayTextRange": [
          0,
          35
        ],
        "author": {
          "id": "2001412908113892121",
          "username": "sample_user_11152",
          "name": "Sample User 11152",
          "bio": "Sample profile bio for Sample User 11152.",
          "location": "Sample City 129",
          "website": "https://example.com/link-94089/profile-11152",
          "pinnedTweetIds": [
            "2001181362332812091"
          ],
          "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-20142.jpg",
          "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-20142.jpg",
          "profileImageShape": "Circle",
          "verified": false,
          "isBlueVerified": true,
          "verifiedType": null,
          "verifiedSince": null,
          "isIdentityVerified": false,
          "isProtected": false,
          "possiblySensitive": false,
          "profileInterstitialType": null,
          "withheldInCountries": [],
          "professional": null,
          "businessAccount": null,
          "creatorSubscriptionsCount": 0,
          "hasHiddenSubscriptions": false,
          "highlightsInfo": null,
          "hasGraduatedAccess": true,
          "isProfileTranslatable": false,
          "hasCustomTimelines": true,
          "isTranslator": false,
          "affiliatesHighlightedLabel": {
            "label": {
              "url": {
                "url": "https://x.com/sample_user_30043",
                "urlType": "DeepLink"
              },
              "badge": {
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-72669.jpg"
              },
              "description": "Sample description for documentation 48371.",
              "userLabelType": "BusinessLabel",
              "userLabelDisplayType": "Badge"
            }
          },
          "defaultProfile": true,
          "defaultProfileImage": false,
          "followerCount": 9544,
          "followingCount": 584,
          "tweetCount": 7091,
          "listedCount": 67,
          "mediaCount": 495,
          "favoritesCount": 12967,
          "createdAt": "2018-12-23T13:25:26.000Z"
        },
        "source": null,
        "type": "tweet",
        "replyTo": null,
        "quotedTweet": null,
        "retweetedTweet": null,
        "reactionContext": {
          "isReaction": true,
          "targetTweetId": "2000000000000000001",
          "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
          "targetAuthor": {
            "id": "1000000000000000001",
            "username": "sample_user_00001",
            "name": "Sample User 00001",
            "avatar": "https://example.com/images/sample-avatar-00001.jpg",
            "isBlueVerified": true
          }
        },
        "likeCount": 1748,
        "retweetCount": 31,
        "replyCount": 163,
        "quoteCount": 25,
        "bookmarkCount": 65,
        "viewCount": 117169,
        "media": [],
        "poll": null,
        "card": null,
        "hashtags": [],
        "mentions": [],
        "urls": [],
        "symbols": [],
        "possiblySensitive": false,
        "limitedActions": null,
        "isEdited": false,
        "editControl": null,
        "isTranslatable": false,
        "lang": "en",
        "translatedText": null,
        "hasBirdwatchNotes": false,
        "birdwatchPivot": null,
        "conversationControl": null,
        "isPromoted": false,
        "promotedMetadata": null,
        "createdAt": "2025-10-01T16:22:10.000Z",
        "place": null,
        "communityId": null,
        "communityResults": null
      },
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 0,
      "media": [],
      "poll": null,
      "card": null,
      "hashtags": [],
      "mentions": [],
      "urls": [],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": false,
      "lang": "en",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:52:03.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5007796420291725477",
      "conversationId": "5007796420291725477",
      "text": "Sample post text 99298 for documentation.",
      "displayTextRange": [
        0,
        75
      ],
      "author": {
        "id": "1001658383861514682",
        "username": "sample_user_33087",
        "name": "Sample User 33087",
        "bio": "Sample profile bio for Sample User 33087.",
        "location": "Sample City 459",
        "website": "https://example.com/link-94089/profile-29900/profile-13612",
        "pinnedTweetIds": [],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-13612.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-13612.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": true,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": false,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": true,
        "defaultProfileImage": false,
        "followerCount": 50,
        "followingCount": 145,
        "tweetCount": 124,
        "listedCount": 0,
        "mediaCount": 16,
        "favoritesCount": 152,
        "createdAt": "2022-11-30T11:37:54.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 2,
      "media": [
        {
          "id": "2101766276920726276",
          "key": "13_2101766276920726276",
          "type": "video",
          "url": "https://example.com/link-94089/profile-29900/media/sample-media-26411.jpg",
          "displayUrl": "pic.x.com/5lY15cf0LW",
          "expandedUrl": "https://x.com/sample_user_54529/status/2007262515642831386/video/1",
          "thumbnailUrl": "https://example.com/link-94089/profile-29900/media/sample-media-41472.jpg",
          "width": 704,
          "height": 1280,
          "aspectRatio": [
            11,
            20
          ],
          "sizes": {
            "thumb": {
              "width": 150,
              "height": 150,
              "resize": "crop"
            },
            "small": {
              "width": 374,
              "height": 680,
              "resize": "fit"
            },
            "medium": {
              "width": 660,
              "height": 1200,
              "resize": "fit"
            },
            "large": {
              "width": 704,
              "height": 1280,
              "resize": "fit"
            },
            "original": {
              "width": 704,
              "height": 1280,
              "resize": "fit"
            }
          },
          "duration": 10,
          "bitrate": null,
          "videoInfo": {
            "variants": [
              {
                "bitrate": 0,
                "contentType": "application/x-mpegURL",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-48775.jpg"
              },
              {
                "bitrate": 632000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-19404.jpg"
              },
              {
                "bitrate": 950000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-75213.jpg"
              },
              {
                "bitrate": 2176000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-26411.jpg"
              }
            ],
            "durationMillis": 9704
          },
          "altText": null,
          "sensitiveMedia": false,
          "features": {
            "all": [],
            "large": [],
            "medium": [],
            "small": [],
            "orig": [
              {
                "faces": []
              }
            ]
          },
          "mediaAvailability": {
            "status": "Available",
            "reason": null
          },
          "allowDownload": true,
          "mediaStats": null,
          "processingInfo": null,
          "sourceStatusId": null,
          "sourceUserId": null,
          "stickers": null
        }
      ],
      "poll": null,
      "card": null,
      "hashtags": [],
      "mentions": [
        "sample_user_54259"
      ],
      "urls": [],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": false,
      "lang": "en",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:51:56.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5001728627922668492",
      "conversationId": "5001728627922668492",
      "text": "Sample post text 98863 for documentation.",
      "displayTextRange": [
        0,
        97
      ],
      "author": {
        "id": "10018922",
        "username": "sample_user_57040",
        "name": "Sample User 81794",
        "bio": "Sample profile bio for Sample User 81794.",
        "location": "Sample City 026",
        "website": "https://example.com/link-94089/profile-29900/profile-82353",
        "pinnedTweetIds": [],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-82353.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-82353.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": {
          "type": "Business",
          "category": [
            {
              "id": 580,
              "name": "Media & News Company",
              "icon_name": "IconBriefcaseStroke"
            }
          ],
          "restId": "7001500056746435120"
        },
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": false,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": false,
        "defaultProfileImage": false,
        "followerCount": 117839,
        "followingCount": 1,
        "tweetCount": 345074,
        "listedCount": 767,
        "mediaCount": 48213,
        "favoritesCount": 2,
        "createdAt": "2009-12-23T12:49:16.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 0,
      "media": [
        {
          "id": "2101027339610739507",
          "key": "3_2101027339610739507",
          "type": "photo",
          "url": "https://example.com/link-94089/profile-29900/media/sample-media-36496.jpg",
          "displayUrl": "pic.x.com/vXu5qFQfh7",
          "expandedUrl": "https://x.com/sample_user_32621/status/2008618211196881887/photo/1",
          "thumbnailUrl": "https://example.com/link-94089/profile-29900/media/sample-media-36496.jpg",
          "width": 1000,
          "height": 523,
          "aspectRatio": [
            1000,
            523
          ],
          "sizes": {
            "thumb": {
              "width": 150,
              "height": 150,
              "resize": "crop"
            },
            "small": {
              "width": 680,
              "height": 356,
              "resize": "fit"
            },
            "medium": {
              "width": 1000,
              "height": 523,
              "resize": "fit"
            },
            "large": {
              "width": 1000,
              "height": 523,
              "resize": "fit"
            },
            "original": {
              "width": 1000,
              "height": 523,
              "resize": "fit"
            }
          },
          "duration": null,
          "bitrate": null,
          "videoInfo": null,
          "altText": null,
          "sensitiveMedia": false,
          "features": {
            "all": [],
            "large": [],
            "medium": [],
            "small": [],
            "orig": [
              {
                "faces": [
                  {
                    "x": 0,
                    "y": 0,
                    "width": 934,
                    "height": 523
                  },
                  {
                    "x": 114,
                    "y": 0,
                    "width": 523,
                    "height": 523
                  },
                  {
                    "x": 146,
                    "y": 0,
                    "width": 459,
                    "height": 523
                  },
                  {
                    "x": 244,
                    "y": 0,
                    "width": 262,
                    "height": 523
                  },
                  {
                    "x": 0,
                    "y": 0,
                    "width": 1000,
                    "height": 523
                  }
                ]
              }
            ]
          },
          "mediaAvailability": {
            "status": "Available",
            "reason": null
          },
          "allowDownload": true,
          "mediaStats": null,
          "processingInfo": null,
          "sourceStatusId": null,
          "sourceUserId": null,
          "stickers": null
        }
      ],
      "poll": null,
      "card": null,
      "hashtags": [
        "sample_topic_39931"
      ],
      "mentions": [],
      "urls": [
        "https://example.com/link-94089/link-46395"
      ],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": false,
      "lang": "el",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:51:34.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5001005184655181759",
      "conversationId": "5001005184655181759",
      "text": "Sample post text 05442 for documentation.",
      "displayTextRange": [
        0,
        277
      ],
      "author": {
        "id": "10024355",
        "username": "sample_user_88984",
        "name": "Sample User 01685",
        "bio": "Sample profile bio for Sample User 01685.",
        "location": "Sample City 457",
        "website": "https://example.com/link-94089/profile-29900/profile-47965",
        "pinnedTweetIds": [
          "2001533815161575065"
        ],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-47965.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-47965.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": true,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": false,
        "defaultProfileImage": false,
        "followerCount": 422951,
        "followingCount": 972,
        "tweetCount": 197383,
        "listedCount": 13852,
        "mediaCount": 82,
        "favoritesCount": 32386,
        "createdAt": "2007-03-07T07:10:46.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 74,
      "media": [],
      "poll": null,
      "card": {
        "name": "",
        "url": "https://example.com/link-94089/profile-29900/link-31353",
        "cardType": "",
        "type": "summary",
        "bindingValues": {
          "title": "",
          "description": "",
          "domain": "",
          "thumbnailImageUrl": null,
          "thumbnailImageColor": null,
          "playerUrl": null,
          "playerWidth": null,
          "playerHeight": null,
          "appId": null,
          "appName": null,
          "appStarRating": null,
          "appPriceAmount": null,
          "appPriceCurrency": null
        },
        "cardPlatform": {
          "platform": {
            "device": {
              "name": "",
              "version": ""
            },
            "audience": {
              "name": ""
            }
          }
        },
        "vanityUrl": null,
        "userRefsResults": null
      },
      "hashtags": [],
      "mentions": [
        "sample_user_09601"
      ],
      "urls": [
        "https://example.com/link-94089/link-02117",
        "https://example.com/link-94089/link-67150",
        "https://example.com/link-94089/link-01086"
      ],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": false,
      "lang": "en",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:51:29.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5001312816663801553",
      "conversationId": "5001312816663801553",
      "text": "Sample post text 26434 for documentation.",
      "displayTextRange": [
        0,
        225
      ],
      "author": {
        "id": "100131491",
        "username": "sample_user_94538",
        "name": "Sample User 94538",
        "bio": "Sample profile bio for Sample User 94538.",
        "location": null,
        "website": null,
        "pinnedTweetIds": [
          "2007681058566080607"
        ],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-04038.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-04038.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": true,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": false,
        "defaultProfileImage": false,
        "followerCount": 6343,
        "followingCount": 4133,
        "tweetCount": 298306,
        "listedCount": 113,
        "mediaCount": 13046,
        "favoritesCount": 9066,
        "createdAt": "2012-06-18T10:17:24.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 5,
      "media": [],
      "poll": null,
      "card": null,
      "hashtags": [],
      "mentions": [],
      "urls": [],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": false,
      "lang": "en",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:51:13.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5001639328508943658",
      "conversationId": "5001639328508943658",
      "text": "Sample post text 98385 for documentation.",
      "displayTextRange": [
        0,
        84
      ],
      "author": {
        "id": "1007811404432727143",
        "username": "sample_user_34928",
        "name": "Sample User 34928",
        "bio": "Sample profile bio for Sample User 34928.",
        "location": null,
        "website": "https://example.com/link-94089/profile-29900/profile-01741",
        "pinnedTweetIds": [
          "2009119691383140426"
        ],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-01741.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-01741.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": {
          "type": "Business",
          "category": [
            {
              "id": 580,
              "name": "Media & News Company",
              "icon_name": "IconBriefcaseStroke"
            }
          ],
          "restId": "7001074862876998500"
        },
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": true,
        "defaultProfileImage": false,
        "followerCount": 477,
        "followingCount": 23,
        "tweetCount": 47515,
        "listedCount": 7,
        "mediaCount": 7050,
        "favoritesCount": 87,
        "createdAt": "2021-04-08T04:38:26.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 1,
      "media": [],
      "poll": null,
      "card": {
        "name": "",
        "url": "https://example.com/link-94089/profile-29900/link-83558",
        "cardType": "",
        "type": "summary",
        "bindingValues": {
          "title": "",
          "description": "",
          "domain": "",
          "thumbnailImageUrl": null,
          "thumbnailImageColor": null,
          "playerUrl": null,
          "playerWidth": null,
          "playerHeight": null,
          "appId": null,
          "appName": null,
          "appStarRating": null,
          "appPriceAmount": null,
          "appPriceCurrency": null
        },
        "cardPlatform": {
          "platform": {
            "device": {
              "name": "",
              "version": ""
            },
            "audience": {
              "name": ""
            }
          }
        },
        "vanityUrl": null,
        "userRefsResults": null
      },
      "hashtags": [],
      "mentions": [],
      "urls": [
        "https://example.com/link-94089/link-63114"
      ],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": true,
      "lang": "in",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:51:11.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5003160039175723396",
      "conversationId": "5003160039175723396",
      "text": "Sample post text 04251 for documentation.",
      "displayTextRange": [
        0,
        255
      ],
      "author": {
        "id": "1001266421076716474",
        "username": "sample_user_83281",
        "name": "Sample User 83281",
        "bio": "Sample profile bio for Sample User 83281.",
        "location": null,
        "website": "https://example.com/link-94089/profile-29900/profile-58829",
        "pinnedTweetIds": [
          "2007140337955457470"
        ],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-58829.jpg",
        "banner": null,
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": false,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {
          "label": {
            "badge": {
              "url": "https://example.com/link-94089/profile-29900/media/sample-media-61141.jpg"
            },
            "description": "Sample description for documentation 90896.",
            "longDescription": {
              "text": "Sample post text 87584 for documentation.",
              "entities": [
                {
                  "fromIndex": 13,
                  "toIndex": 24,
                  "ref": {
                    "type": "TimelineRichTextMention",
                    "screen_name": "sample_user_64672",
                    "mention_results": {
                      "result": {
                        "__typename": "User",
                        "legacy": {
                          "screen_name": "sample_user_64672"
                        },
                        "rest_id": "700493178"
                      }
                    }
                  }
                }
              ]
            },
            "userLabelType": "Sample description for documentation 90896.Label"
          }
        },
        "defaultProfile": true,
        "defaultProfileImage": false,
        "followerCount": 14,
        "followingCount": 4,
        "tweetCount": 4461,
        "listedCount": 0,
        "mediaCount": 3870,
        "favoritesCount": 0,
        "createdAt": "2023-08-25T02:39:53.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 1,
      "media": [
        {
          "id": "2101057016571585008",
          "key": "3_2101057016571585008",
          "type": "photo",
          "url": "https://example.com/link-94089/profile-29900/media/sample-media-54339.jpg",
          "displayUrl": "pic.x.com/xH1k7HT2Nr",
          "expandedUrl": "https://x.com/sample_user_46213/status/2009780368692558740/photo/1",
          "thumbnailUrl": "https://example.com/link-94089/profile-29900/media/sample-media-54339.jpg",
          "width": 1600,
          "height": 850,
          "aspectRatio": [
            32,
            17
          ],
          "sizes": {
            "thumb": {
              "width": 150,
              "height": 150,
              "resize": "crop"
            },
            "small": {
              "width": 680,
              "height": 361,
              "resize": "fit"
            },
            "medium": {
              "width": 1200,
              "height": 638,
              "resize": "fit"
            },
            "large": {
              "width": 1600,
              "height": 850,
              "resize": "fit"
            },
            "original": {
              "width": 1600,
              "height": 850,
              "resize": "fit"
            }
          },
          "duration": null,
          "bitrate": null,
          "videoInfo": null,
          "altText": null,
          "sensitiveMedia": false,
          "features": {
            "all": [],
            "large": [],
            "medium": [],
            "small": [],
            "orig": [
              {
                "faces": [
                  {
                    "x": 82,
                    "y": 0,
                    "width": 1518,
                    "height": 850
                  },
                  {
                    "x": 495,
                    "y": 0,
                    "width": 850,
                    "height": 850
                  },
                  {
                    "x": 547,
                    "y": 0,
                    "width": 746,
                    "height": 850
                  },
                  {
                    "x": 708,
                    "y": 0,
                    "width": 425,
                    "height": 850
                  },
                  {
                    "x": 0,
                    "y": 0,
                    "width": 1600,
                    "height": 850
                  }
                ]
              }
            ]
          },
          "mediaAvailability": {
            "status": "Available",
            "reason": null
          },
          "allowDownload": true,
          "mediaStats": null,
          "processingInfo": null,
          "sourceStatusId": null,
          "sourceUserId": null,
          "stickers": null
        }
      ],
      "poll": null,
      "card": null,
      "hashtags": [],
      "mentions": [],
      "urls": [],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": false,
      "lang": "ja",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:50:59.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "9009199367413034868",
      "conversationId": "2001573686078201295",
      "text": "Sample post text 62813 for documentation.",
      "displayTextRange": [
        14,
        121
      ],
      "author": {
        "id": "1006913218670000037",
        "username": "sample_user_02212",
        "name": "Sample User 02212",
        "bio": "Sample profile bio for Sample User 02212.",
        "location": "Sample City 655",
        "website": null,
        "pinnedTweetIds": [],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-22710.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-22710.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": false,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": true,
        "defaultProfileImage": false,
        "followerCount": 21,
        "followingCount": 160,
        "tweetCount": 230,
        "listedCount": 0,
        "mediaCount": 71,
        "favoritesCount": 7010,
        "createdAt": "2024-05-16T00:06:19.000Z"
      },
      "source": null,
      "type": "reply",
      "replyTo": {
        "tweetId": "2001573686078201295",
        "userId": "100746678925814491",
        "username": "sample_user_26682"
      },
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 4,
      "media": [],
      "poll": null,
      "card": null,
      "hashtags": [],
      "mentions": [
        "sample_user_26682"
      ],
      "urls": [],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": false,
      "lang": "en",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:50:32.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5001216828988273241",
      "conversationId": "5001216828988273241",
      "text": "Sample post text 39862 for documentation.",
      "displayTextRange": [
        0,
        270
      ],
      "author": {
        "id": "1001262580086398266",
        "username": "sample_user_37728",
        "name": "Sample User 37728",
        "bio": "Sample profile bio for Sample User 37728.",
        "location": null,
        "website": "https://example.com/link-94089/profile-29900/profile-36798",
        "pinnedTweetIds": [
          "2001090050844781189"
        ],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-36798.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-36798.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": true,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": false,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": true,
        "defaultProfileImage": false,
        "followerCount": 1549,
        "followingCount": 1205,
        "tweetCount": 5548,
        "listedCount": 6,
        "mediaCount": 167,
        "favoritesCount": 9138,
        "createdAt": "2023-06-27T20:17:13.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 1,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 1,
      "media": [],
      "poll": null,
      "card": null,
      "hashtags": [],
      "mentions": [
        "sample_user_21386"
      ],
      "urls": [],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": false,
      "lang": "en",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:50:28.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5006577516378064115",
      "conversationId": "5006577516378064115",
      "text": "Sample post text 32321 for documentation.",
      "displayTextRange": [
        0,
        62
      ],
      "author": {
        "id": "1007661604825913954",
        "username": "sample_user_66029",
        "name": "Sample User 66029",
        "bio": "Sample profile bio for Sample User 66029.",
        "location": null,
        "website": null,
        "pinnedTweetIds": [],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-41470.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-41470.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": true,
        "defaultProfileImage": false,
        "followerCount": 172,
        "followingCount": 364,
        "tweetCount": 12320,
        "listedCount": 0,
        "mediaCount": 1703,
        "favoritesCount": 5710,
        "createdAt": "2020-11-09T05:05:27.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 1,
      "media": [],
      "poll": null,
      "card": {
        "name": "",
        "url": "https://example.com/link-94089/profile-29900/link-41849",
        "cardType": "",
        "type": "summary",
        "bindingValues": {
          "title": "",
          "description": "",
          "domain": "",
          "thumbnailImageUrl": null,
          "thumbnailImageColor": null,
          "playerUrl": null,
          "playerWidth": null,
          "playerHeight": null,
          "appId": null,
          "appName": null,
          "appStarRating": null,
          "appPriceAmount": null,
          "appPriceCurrency": null
        },
        "cardPlatform": {
          "platform": {
            "device": {
              "name": "",
              "version": ""
            },
            "audience": {
              "name": ""
            }
          }
        },
        "vanityUrl": null,
        "userRefsResults": null
      },
      "hashtags": [],
      "mentions": [],
      "urls": [
        "https://example.com/link-94089/link-66818"
      ],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": true,
      "lang": "ja",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:50:19.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5008879394908672067",
      "conversationId": "5008879394908672067",
      "text": "Sample post text 57922 for documentation.",
      "displayTextRange": [
        0,
        28
      ],
      "author": {
        "id": "1001039304929179269",
        "username": "sample_user_42603",
        "name": "Sample User 42603",
        "bio": "Sample profile bio for Sample User 42603.",
        "location": "Sample City 083",
        "website": "https://example.com/link-94089/profile-29900/profile-92828",
        "pinnedTweetIds": [
          "2002554639144518643"
        ],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-92828.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-92828.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": true,
        "defaultProfileImage": false,
        "followerCount": 1006,
        "followingCount": 1712,
        "tweetCount": 138935,
        "listedCount": 4,
        "mediaCount": 1956,
        "favoritesCount": 235206,
        "createdAt": "2018-08-23T01:56:31.000Z"
      },
      "source": null,
      "type": "quote",
      "replyTo": null,
      "quotedTweet": {
        "id": "2001642373961442324",
        "conversationId": "2001642373961442324",
        "text": "Sample post text 06691 for documentation.",
        "displayTextRange": [
          0,
          15
        ],
        "author": {
          "id": "1001495759",
          "username": "sample_user_54259",
          "name": "Sample User 58027",
          "bio": "Sample profile bio for Sample User 58027.",
          "location": null,
          "website": "https://example.com/link-94089/profile-07928",
          "pinnedTweetIds": [
            "2001642373961442324"
          ],
          "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-52220.jpg",
          "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-52220.jpg",
          "profileImageShape": "Square",
          "verified": false,
          "isBlueVerified": true,
          "verifiedType": "Business",
          "verifiedSince": null,
          "isIdentityVerified": false,
          "isProtected": false,
          "possiblySensitive": false,
          "profileInterstitialType": null,
          "withheldInCountries": [],
          "professional": null,
          "businessAccount": null,
          "creatorSubscriptionsCount": 0,
          "hasHiddenSubscriptions": false,
          "highlightsInfo": null,
          "hasGraduatedAccess": true,
          "isProfileTranslatable": false,
          "hasCustomTimelines": false,
          "isTranslator": false,
          "affiliatesHighlightedLabel": {},
          "defaultProfile": true,
          "defaultProfileImage": false,
          "followerCount": 4368218,
          "followingCount": 3,
          "tweetCount": 1411,
          "listedCount": 25012,
          "mediaCount": 405,
          "favoritesCount": 1057,
          "createdAt": "2015-12-06T22:51:08.000Z"
        },
        "source": null,
        "type": "tweet",
        "replyTo": null,
        "quotedTweet": null,
        "retweetedTweet": null,
        "reactionContext": {
          "isReaction": true,
          "targetTweetId": "2000000000000000001",
          "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
          "targetAuthor": {
            "id": "1000000000000000001",
            "username": "sample_user_00001",
            "name": "Sample User 00001",
            "avatar": "https://example.com/images/sample-avatar-00001.jpg",
            "isBlueVerified": true
          }
        },
        "likeCount": 19402,
        "retweetCount": 2191,
        "replyCount": 1457,
        "quoteCount": 3568,
        "bookmarkCount": 3659,
        "viewCount": 6710576,
        "media": [
          {
            "id": "2101132363799776499",
            "key": "13_2101132363799776499",
            "type": "video",
            "url": "https://example.com/link-94089/profile-29900/media/sample-media-55908.jpg",
            "displayUrl": "pic.x.com/hy95wDM5nB",
            "expandedUrl": "https://x.com/sample_user_18536/status/2006083928193889095/video/1",
            "thumbnailUrl": "https://example.com/link-94089/profile-29900/media/sample-media-25395.jpg",
            "width": 1920,
            "height": 1080,
            "aspectRatio": [
              16,
              9
            ],
            "sizes": {
              "thumb": {
                "width": 150,
                "height": 150,
                "resize": "crop"
              },
              "small": {
                "width": 680,
                "height": 383,
                "resize": "fit"
              },
              "medium": {
                "width": 1200,
                "height": 675,
                "resize": "fit"
              },
              "large": {
                "width": 1920,
                "height": 1080,
                "resize": "fit"
              },
              "original": {
                "width": 1920,
                "height": 1080,
                "resize": "fit"
              }
            },
            "duration": 57,
            "bitrate": null,
            "videoInfo": {
              "variants": [
                {
                  "bitrate": 0,
                  "contentType": "application/x-mpegURL",
                  "url": "https://example.com/link-94089/profile-29900/media/sample-media-57037.jpg"
                },
                {
                  "bitrate": 256000,
                  "contentType": "video/mp4",
                  "url": "https://example.com/link-94089/profile-29900/media/sample-media-33183.jpg"
                },
                {
                  "bitrate": 832000,
                  "contentType": "video/mp4",
                  "url": "https://example.com/link-94089/profile-29900/media/sample-media-26115.jpg"
                },
                {
                  "bitrate": 2176000,
                  "contentType": "video/mp4",
                  "url": "https://example.com/link-94089/profile-29900/media/sample-media-79733.jpg"
                },
                {
                  "bitrate": 10368000,
                  "contentType": "video/mp4",
                  "url": "https://example.com/link-94089/profile-29900/media/sample-media-55908.jpg"
                }
              ],
              "durationMillis": 57307
            },
            "altText": null,
            "sensitiveMedia": false,
            "features": {
              "all": [],
              "large": [],
              "medium": [],
              "small": [],
              "orig": [
                {
                  "faces": []
                }
              ]
            },
            "mediaAvailability": {
              "status": "Available",
              "reason": null
            },
            "allowDownload": true,
            "mediaStats": null,
            "processingInfo": null,
            "sourceStatusId": null,
            "sourceUserId": null,
            "stickers": null
          }
        ],
        "poll": null,
        "card": null,
        "hashtags": [],
        "mentions": [],
        "urls": [],
        "symbols": [],
        "possiblySensitive": false,
        "limitedActions": null,
        "isEdited": false,
        "editControl": null,
        "isTranslatable": false,
        "lang": "en",
        "translatedText": null,
        "hasBirdwatchNotes": false,
        "birdwatchPivot": null,
        "conversationControl": null,
        "isPromoted": false,
        "promotedMetadata": null,
        "createdAt": "2025-09-30T17:20:13.000Z",
        "place": null,
        "communityId": null,
        "communityResults": null
      },
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 0,
      "media": [],
      "poll": null,
      "card": null,
      "hashtags": [],
      "mentions": [],
      "urls": [],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": true,
      "lang": "pt",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:50:19.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5004929151247453424",
      "conversationId": "5004929151247453424",
      "text": "Sample post text 14872 for documentation.",
      "displayTextRange": [
        0,
        221
      ],
      "author": {
        "id": "1003804221844082443",
        "username": "sample_user_36814",
        "name": "Sample User 36814",
        "bio": "Sample profile bio for Sample User 36814.",
        "location": "Sample City 250",
        "website": "https://example.com/link-94089/profile-29900/profile-83358",
        "pinnedTweetIds": [
          "2001573279169129162"
        ],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-83358.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-83358.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": true,
        "defaultProfileImage": false,
        "followerCount": 560,
        "followingCount": 691,
        "tweetCount": 12709,
        "listedCount": 5,
        "mediaCount": 380,
        "favoritesCount": 58607,
        "createdAt": "2022-03-19T15:52:14.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 3,
      "media": [
        {
          "id": "2103649693116539206",
          "key": "13_2103649693116539206",
          "type": "video",
          "url": "https://example.com/link-94089/profile-29900/media/sample-media-00748.jpg",
          "displayUrl": "pic.x.com/ny4HtYAvdK",
          "expandedUrl": "https://x.com/sample_user_09075/status/2001696198575947122/video/1",
          "thumbnailUrl": "https://example.com/link-94089/profile-29900/media/sample-media-71662.jpg",
          "width": 704,
          "height": 1280,
          "aspectRatio": [
            11,
            20
          ],
          "sizes": {
            "thumb": {
              "width": 150,
              "height": 150,
              "resize": "crop"
            },
            "small": {
              "width": 374,
              "height": 680,
              "resize": "fit"
            },
            "medium": {
              "width": 660,
              "height": 1200,
              "resize": "fit"
            },
            "large": {
              "width": 704,
              "height": 1280,
              "resize": "fit"
            },
            "original": {
              "width": 704,
              "height": 1280,
              "resize": "fit"
            }
          },
          "duration": 10,
          "bitrate": null,
          "videoInfo": {
            "variants": [
              {
                "bitrate": 0,
                "contentType": "application/x-mpegURL",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-89252.jpg"
              },
              {
                "bitrate": 632000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-79058.jpg"
              },
              {
                "bitrate": 950000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-28067.jpg"
              },
              {
                "bitrate": 2176000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-00748.jpg"
              }
            ],
            "durationMillis": 10000
          },
          "altText": null,
          "sensitiveMedia": false,
          "features": {
            "all": [],
            "large": [],
            "medium": [],
            "small": [],
            "orig": [
              {
                "faces": []
              }
            ]
          },
          "mediaAvailability": {
            "status": "Available",
            "reason": null
          },
          "allowDownload": true,
          "mediaStats": null,
          "processingInfo": null,
          "sourceStatusId": null,
          "sourceUserId": null,
          "stickers": null
        }
      ],
      "poll": null,
      "card": null,
      "hashtags": [],
      "mentions": [
        "sample_user_54259"
      ],
      "urls": [],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": false,
      "lang": "en",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:50:15.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5001554188176192868",
      "conversationId": "5001554188176192868",
      "text": "Sample post text 25754 for documentation.",
      "displayTextRange": [
        0,
        60
      ],
      "author": {
        "id": "10013772",
        "username": "sample_user_89359",
        "name": "Sample User 89359",
        "bio": "Sample profile bio for Sample User 89359.",
        "location": "Sample City 620",
        "website": "https://example.com/link-94089/profile-29900/profile-04427",
        "pinnedTweetIds": [],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-04427.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-04427.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": true,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": {
          "type": "Creator",
          "category": [
            {
              "id": 1055,
              "name": "Software developer/Programmer/Software engineer",
              "icon_name": "IconBriefcaseStroke"
            }
          ],
          "restId": "7004504897993851899"
        },
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": false,
        "defaultProfileImage": false,
        "followerCount": 6438,
        "followingCount": 5704,
        "tweetCount": 14659,
        "listedCount": 52,
        "mediaCount": 1631,
        "favoritesCount": 6428,
        "createdAt": "2009-03-30T17:12:48.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 1,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 11,
      "media": [
        {
          "id": "2109286855737966289",
          "key": "13_2109286855737966289",
          "type": "video",
          "url": "https://example.com/link-94089/profile-29900/media/sample-media-45213.jpg",
          "displayUrl": "pic.x.com/z0W9fdvlN2",
          "expandedUrl": "https://x.com/sample_user_64789/status/2005114975396498810/video/1",
          "thumbnailUrl": "https://example.com/link-94089/profile-29900/media/sample-media-67722.jpg",
          "width": 1764,
          "height": 3840,
          "aspectRatio": [
            147,
            320
          ],
          "sizes": {
            "thumb": {
              "width": 150,
              "height": 150,
              "resize": "crop"
            },
            "small": {
              "width": 312,
              "height": 680,
              "resize": "fit"
            },
            "medium": {
              "width": 551,
              "height": 1200,
              "resize": "fit"
            },
            "large": {
              "width": 941,
              "height": 2048,
              "resize": "fit"
            },
            "original": {
              "width": 1764,
              "height": 3840,
              "resize": "fit"
            }
          },
          "duration": 9,
          "bitrate": null,
          "videoInfo": {
            "variants": [
              {
                "bitrate": 0,
                "contentType": "application/x-mpegURL",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-54878.jpg"
              },
              {
                "bitrate": 632000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-67786.jpg"
              },
              {
                "bitrate": 950000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-36467.jpg"
              },
              {
                "bitrate": 2176000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-78660.jpg"
              },
              {
                "bitrate": 10368000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-19864.jpg"
              },
              {
                "bitrate": 25128000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-45213.jpg"
              }
            ],
            "durationMillis": 9216
          },
          "altText": null,
          "sensitiveMedia": false,
          "features": {
            "all": [],
            "large": [],
            "medium": [],
            "small": [],
            "orig": [
              {
                "faces": []
              }
            ]
          },
          "mediaAvailability": {
            "status": "Available",
            "reason": null
          },
          "allowDownload": true,
          "mediaStats": null,
          "processingInfo": null,
          "sourceStatusId": null,
          "sourceUserId": null,
          "stickers": null
        }
      ],
      "poll": null,
      "card": null,
      "hashtags": [],
      "mentions": [],
      "urls": [],
      "symbols": [
        "KTA",
        "XRGE"
      ],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": false,
      "lang": "en",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:50:10.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5006746930774197474",
      "conversationId": "5006746930774197474",
      "text": "Sample post text 55289 for documentation.",
      "displayTextRange": [
        0,
        84
      ],
      "author": {
        "id": "10013529",
        "username": "sample_user_68590",
        "name": "Sample User 68590",
        "bio": "Sample profile bio for Sample User 68590.",
        "location": "Sample City 710",
        "website": "https://example.com/link-94089/profile-68590",
        "pinnedTweetIds": [
          "2001762407330891999"
        ],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-78071.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-78071.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": true,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": false,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": true,
        "defaultProfileImage": false,
        "followerCount": 45935,
        "followingCount": 207,
        "tweetCount": 252427,
        "listedCount": 2645,
        "mediaCount": 47782,
        "favoritesCount": 780,
        "createdAt": "2009-10-19T03:55:50.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 53,
      "media": [],
      "poll": null,
      "card": {
        "name": "",
        "url": "https://example.com/link-94089/profile-29900/link-86282",
        "cardType": "",
        "type": "summary",
        "bindingValues": {
          "title": "",
          "description": "",
          "domain": "",
          "thumbnailImageUrl": null,
          "thumbnailImageColor": null,
          "playerUrl": null,
          "playerWidth": null,
          "playerHeight": null,
          "appId": null,
          "appName": null,
          "appStarRating": null,
          "appPriceAmount": null,
          "appPriceCurrency": null
        },
        "cardPlatform": {
          "platform": {
            "device": {
              "name": "",
              "version": ""
            },
            "audience": {
              "name": ""
            }
          }
        },
        "vanityUrl": null,
        "userRefsResults": null
      },
      "hashtags": [
        "sample_topic_50879"
      ],
      "mentions": [],
      "urls": [
        "https://example.com/link-94089/link-93846"
      ],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": true,
      "lang": "ja",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:50:05.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5009136805748812647",
      "conversationId": "5009136805748812647",
      "text": "Sample post text 31021 for documentation.",
      "displayTextRange": [
        0,
        154
      ],
      "author": {
        "id": "100543486",
        "username": "sample_user_10916",
        "name": "Sample User 10916",
        "bio": "Sample profile bio for Sample User 10916.",
        "location": "Sample City 720",
        "website": "https://example.com/link-94089/profile-29900/profile-30812",
        "pinnedTweetIds": [],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-30812.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-30812.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": true,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": {
          "type": "Business",
          "category": [
            {
              "id": 580,
              "name": "Media & News Company",
              "icon_name": "IconBriefcaseStroke"
            }
          ],
          "restId": "7001622168107980317"
        },
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": false,
        "defaultProfileImage": false,
        "followerCount": 1683069,
        "followingCount": 3,
        "tweetCount": 164941,
        "listedCount": 247,
        "mediaCount": 1276,
        "favoritesCount": 74,
        "createdAt": "2011-08-08T04:03:40.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 5,
      "media": [],
      "poll": null,
      "card": {
        "name": "",
        "url": "https://example.com/link-94089/profile-29900/link-09959",
        "cardType": "",
        "type": "summary",
        "bindingValues": {
          "title": "",
          "description": "",
          "domain": "",
          "thumbnailImageUrl": null,
          "thumbnailImageColor": null,
          "playerUrl": null,
          "playerWidth": null,
          "playerHeight": null,
          "appId": null,
          "appName": null,
          "appStarRating": null,
          "appPriceAmount": null,
          "appPriceCurrency": null
        },
        "cardPlatform": {
          "platform": {
            "device": {
              "name": "",
              "version": ""
            },
            "audience": {
              "name": ""
            }
          }
        },
        "vanityUrl": null,
        "userRefsResults": null
      },
      "hashtags": [],
      "mentions": [],
      "urls": [
        "https://example.com/link-94089/link-23627"
      ],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": true,
      "lang": "in",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:49:37.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "9001028373812893919",
      "conversationId": "2001696744712930648",
      "text": "Sample post text 39847 for documentation.",
      "displayTextRange": [
        38,
        68
      ],
      "author": {
        "id": "1004814509",
        "username": "sample_user_34726",
        "name": "Sample User 34726",
        "bio": "Sample profile bio for Sample User 34726.",
        "location": "Sample City 667",
        "website": "https://example.com/link-94089/profile-29900/profile-13489",
        "pinnedTweetIds": [
          "2001277289522659615"
        ],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-13489.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-13489.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": false,
        "defaultProfileImage": false,
        "followerCount": 512,
        "followingCount": 2959,
        "tweetCount": 20036,
        "listedCount": 35,
        "mediaCount": 720,
        "favoritesCount": 69982,
        "createdAt": "2014-01-11T01:13:22.000Z"
      },
      "source": null,
      "type": "reply",
      "replyTo": {
        "tweetId": "2001337828732899823",
        "userId": "100135036248701661",
        "username": "sample_user_47333"
      },
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 1,
      "media": [],
      "poll": null,
      "card": null,
      "hashtags": [],
      "mentions": [
        "sample_user_47333",
        "sample_user_92778",
        "sample_user_54259"
      ],
      "urls": [],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": false,
      "lang": "en",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:49:32.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5008732295651308304",
      "conversationId": "5008732295651308304",
      "text": "Sample post text 35140 for documentation.",
      "displayTextRange": [
        0,
        119
      ],
      "author": {
        "id": "100158755",
        "username": "sample_user_45981",
        "name": "Sample User 45981",
        "bio": "Sample profile bio for Sample User 45981.",
        "location": null,
        "website": null,
        "pinnedTweetIds": [],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-05153.jpg",
        "banner": null,
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": {
          "type": "Creator",
          "category": [
            {
              "id": 934,
              "name": "Social Media Influencer",
              "icon_name": "IconBriefcaseStroke"
            }
          ],
          "restId": "7003989198756046936"
        },
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": false,
        "defaultProfileImage": false,
        "followerCount": 69,
        "followingCount": 162,
        "tweetCount": 581,
        "listedCount": 0,
        "mediaCount": 256,
        "favoritesCount": 668,
        "createdAt": "2010-07-18T01:41:14.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 52,
      "media": [
        {
          "id": "2101084463759148771",
          "key": "13_2101084463759148771",
          "type": "video",
          "url": "https://example.com/link-94089/profile-29900/media/sample-media-87740.jpg",
          "displayUrl": "pic.x.com/5YZZvnYZv1",
          "expandedUrl": "https://x.com/sample_user_15998/status/2009616435460368306/video/1",
          "thumbnailUrl": "https://example.com/link-94089/profile-29900/media/sample-media-31238.jpg",
          "width": 704,
          "height": 1280,
          "aspectRatio": [
            11,
            20
          ],
          "sizes": {
            "thumb": {
              "width": 150,
              "height": 150,
              "resize": "crop"
            },
            "small": {
              "width": 374,
              "height": 680,
              "resize": "fit"
            },
            "medium": {
              "width": 660,
              "height": 1200,
              "resize": "fit"
            },
            "large": {
              "width": 704,
              "height": 1280,
              "resize": "fit"
            },
            "original": {
              "width": 704,
              "height": 1280,
              "resize": "fit"
            }
          },
          "duration": 10,
          "bitrate": null,
          "videoInfo": {
            "variants": [
              {
                "bitrate": 0,
                "contentType": "application/x-mpegURL",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-16111.jpg"
              },
              {
                "bitrate": 632000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-80227.jpg"
              },
              {
                "bitrate": 950000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-93406.jpg"
              },
              {
                "bitrate": 2176000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-87740.jpg"
              }
            ],
            "durationMillis": 10100
          },
          "altText": null,
          "sensitiveMedia": false,
          "features": {
            "all": [],
            "large": [],
            "medium": [],
            "small": [],
            "orig": [
              {
                "faces": []
              }
            ]
          },
          "mediaAvailability": {
            "status": "Available",
            "reason": null
          },
          "allowDownload": true,
          "mediaStats": null,
          "processingInfo": null,
          "sourceStatusId": null,
          "sourceUserId": null,
          "stickers": null
        },
        {
          "id": "2101141470146145682",
          "key": "13_2101141470146145682",
          "type": "video",
          "url": "https://example.com/link-94089/profile-29900/media/sample-media-81963.jpg",
          "displayUrl": "pic.x.com/5YZZvnYZv1",
          "expandedUrl": "https://x.com/sample_user_15998/status/2009616435460368306/video/1",
          "thumbnailUrl": "https://example.com/link-94089/profile-29900/media/sample-media-13591.jpg",
          "width": 704,
          "height": 1280,
          "aspectRatio": [
            11,
            20
          ],
          "sizes": {
            "thumb": {
              "width": 150,
              "height": 150,
              "resize": "crop"
            },
            "small": {
              "width": 374,
              "height": 680,
              "resize": "fit"
            },
            "medium": {
              "width": 660,
              "height": 1200,
              "resize": "fit"
            },
            "large": {
              "width": 704,
              "height": 1280,
              "resize": "fit"
            },
            "original": {
              "width": 704,
              "height": 1280,
              "resize": "fit"
            }
          },
          "duration": 10,
          "bitrate": null,
          "videoInfo": {
            "variants": [
              {
                "bitrate": 0,
                "contentType": "application/x-mpegURL",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-80720.jpg"
              },
              {
                "bitrate": 632000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-43086.jpg"
              },
              {
                "bitrate": 950000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-99396.jpg"
              },
              {
                "bitrate": 2176000,
                "contentType": "video/mp4",
                "url": "https://example.com/link-94089/profile-29900/media/sample-media-81963.jpg"
              }
            ],
            "durationMillis": 10100
          },
          "altText": null,
          "sensitiveMedia": false,
          "features": {
            "all": [],
            "large": [],
            "medium": [],
            "small": [],
            "orig": [
              {
                "faces": []
              }
            ]
          },
          "mediaAvailability": {
            "status": "Available",
            "reason": null
          },
          "allowDownload": true,
          "mediaStats": null,
          "processingInfo": null,
          "sourceStatusId": null,
          "sourceUserId": null,
          "stickers": null
        }
      ],
      "poll": null,
      "card": null,
      "hashtags": [
        "sample_topic_32478"
      ],
      "mentions": [
        "sample_user_54259"
      ],
      "urls": [],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": true,
      "lang": "es",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:49:24.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "5003846751207294437",
      "conversationId": "5003846751207294437",
      "text": "Sample post text 95756 for documentation.",
      "displayTextRange": [
        0,
        25
      ],
      "author": {
        "id": "1006086146937944330",
        "username": "sample_user_21375",
        "name": "Sample User 21375",
        "bio": "Sample profile bio for Sample User 21375.",
        "location": null,
        "website": "https://example.com/link-94089/profile-29900/profile-88542",
        "pinnedTweetIds": [
          "2001518738021086670"
        ],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-88542.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-88542.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": false,
        "defaultProfileImage": false,
        "followerCount": 668,
        "followingCount": 1029,
        "tweetCount": 12626,
        "listedCount": 11,
        "mediaCount": 3839,
        "favoritesCount": 72610,
        "createdAt": "2018-06-25T06:59:47.000Z"
      },
      "source": null,
      "type": "tweet",
      "replyTo": null,
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 0,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 6,
      "media": [],
      "poll": null,
      "card": null,
      "hashtags": [],
      "mentions": [],
      "urls": [],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": true,
      "lang": "ja",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:49:22.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    },
    {
      "id": "9007428986762710781",
      "conversationId": "2001696744712930648",
      "text": "Sample post text 61896 for documentation.",
      "displayTextRange": [
        24,
        52
      ],
      "author": {
        "id": "1004814509",
        "username": "sample_user_34726",
        "name": "Sample User 34726",
        "bio": "Sample profile bio for Sample User 34726.",
        "location": "Sample City 667",
        "website": "https://example.com/link-94089/profile-29900/profile-13489",
        "pinnedTweetIds": [
          "2001277289522659615"
        ],
        "avatar": "https://example.com/link-94089/profile-29900/images/sample-avatar-13489.jpg",
        "banner": "https://example.com/link-94089/profile-29900/images/sample-banner-13489.jpg",
        "profileImageShape": "Circle",
        "verified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "verifiedSince": null,
        "isIdentityVerified": false,
        "isProtected": false,
        "possiblySensitive": false,
        "profileInterstitialType": null,
        "withheldInCountries": [],
        "professional": null,
        "businessAccount": null,
        "creatorSubscriptionsCount": 0,
        "hasHiddenSubscriptions": false,
        "highlightsInfo": null,
        "hasGraduatedAccess": true,
        "isProfileTranslatable": false,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "affiliatesHighlightedLabel": {},
        "defaultProfile": false,
        "defaultProfileImage": false,
        "followerCount": 512,
        "followingCount": 2959,
        "tweetCount": 20036,
        "listedCount": 35,
        "mediaCount": 720,
        "favoritesCount": 69982,
        "createdAt": "2014-01-11T01:13:22.000Z"
      },
      "source": null,
      "type": "reply",
      "replyTo": {
        "tweetId": "2001696744712930648",
        "userId": "100135036248701661",
        "username": "sample_user_47333"
      },
      "quotedTweet": null,
      "retweetedTweet": null,
      "reactionContext": {
        "isReaction": true,
        "targetTweetId": "2000000000000000001",
        "targetTweetUrl": "https://x.com/sample_user_00001/status/2000000000000000001",
        "targetAuthor": {
          "id": "1000000000000000001",
          "username": "sample_user_00001",
          "name": "Sample User 00001",
          "avatar": "https://example.com/images/sample-avatar-00001.jpg",
          "isBlueVerified": true
        }
      },
      "likeCount": 1,
      "retweetCount": 0,
      "replyCount": 0,
      "quoteCount": 0,
      "bookmarkCount": 0,
      "viewCount": 6,
      "media": [],
      "poll": null,
      "card": null,
      "hashtags": [],
      "mentions": [
        "sample_user_47333",
        "sample_user_54259"
      ],
      "urls": [],
      "symbols": [],
      "possiblySensitive": false,
      "limitedActions": null,
      "isEdited": false,
      "editControl": null,
      "isTranslatable": false,
      "lang": "en",
      "translatedText": null,
      "hasBirdwatchNotes": false,
      "birdwatchPivot": null,
      "conversationControl": null,
      "isPromoted": false,
      "promotedMetadata": null,
      "createdAt": "2025-10-02T05:49:06.000Z",
      "place": null,
      "communityId": null,
      "communityResults": null
    }
  ],
  "pagination": {
    "nextCursor": "DAADDAABCgABG2O7Uf4aIc4KAAIbY7qj5NYQXgAIAAIAAAACCAADAAAAAAgABAAAAAAKAAUbY7tYYkAnEAoABhtju1hiP9jwAAA",
    "prevCursor": "DAADDAABCgABG2O7Uf4aIc4KAAIbY7qj5NYQXgAIAAIAAAABCAADAAAAAAgABAAAAAAKAAUbY7tYYkAnEAoABhtju1hiP9jwAAA"
  }
}

API Playground

GET/tw-v2/search

Press ⌘ + Enter to execute

curl -X GET "https://api.tweetapi.com/tw-v2/search" \
  -H "X-API-Key: YOUR_API_KEY"
Response

Click "Try It!" to see the response