Followers V2

GET/tw-v2/user/followers

Description

Get a paginated list of users following the specified account. Returns user objects with complete profile information.

Parameters

ParameterTypeRequiredDescription
userIdstringrequiredUnique platform user ID (e.g., '90013690')
cursorstringoptionalPagination cursor for fetching next page of results. Obtained from previous response.

Code Examples

const params = new URLSearchParams({
  userId: '90013690'
});

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

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

Response

Success Response (200 OK)

200
{
  "data": [
    {
      "id": "10019446",
      "username": "sample_user_50395",
      "name": "Sample User 50395",
      "bio": "Sample profile bio for Sample User 50395.",
      "location": null,
      "website": "https://example.com/link-94089/profile-50395",
      "pinnedTweetIds": [
        "2008720192651161914"
      ],
      "avatar": "https://example.com/images/sample-avatar-50395.jpg",
      "banner": "https://example.com/images/sample-banner-50395.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": 144,
            "name": "Education",
            "icon_name": "IconBriefcaseStroke"
          }
        ],
        "restId": "9001486309657427110"
      },
      "businessAccount": null,
      "creatorSubscriptionsCount": 0,
      "hasHiddenSubscriptions": false,
      "highlightsInfo": null,
      "hasGraduatedAccess": true,
      "isProfileTranslatable": false,
      "hasCustomTimelines": true,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": false,
      "defaultProfileImage": false,
      "followerCount": 6154414,
      "followingCount": 1659,
      "tweetCount": 51578,
      "listedCount": 14926,
      "mediaCount": 7370,
      "favoritesCount": 227,
      "createdAt": "2009-12-06T23:33:02.000Z"
    },
    {
      "id": "10075982",
      "username": "sample_user_89761",
      "name": "Sample User 89761",
      "bio": "Sample profile bio for Sample User 89761.",
      "location": "Sample City 982",
      "website": "https://example.com/link-94089/profile-89761",
      "pinnedTweetIds": [
        "2001816059599512081"
      ],
      "avatar": "https://example.com/images/sample-avatar-89761.jpg",
      "banner": "https://example.com/images/sample-banner-89761.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": 15512690,
      "followingCount": 2296,
      "tweetCount": 51834,
      "listedCount": 25067,
      "mediaCount": 3408,
      "favoritesCount": 38858,
      "createdAt": "2009-05-11T21:18:33.000Z"
    },
    {
      "id": "10010429",
      "username": "sample_user_75202",
      "name": "Sample User 75202",
      "bio": "Sample profile bio for Sample User 75202.",
      "location": "Sample City 457",
      "website": "https://example.com/link-94089/profile-75202",
      "pinnedTweetIds": [
        "2006545590552064494"
      ],
      "avatar": "https://example.com/images/sample-avatar-75202.jpg",
      "banner": "https://example.com/images/sample-banner-75202.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": 934,
            "name": "Social Media Influencer",
            "icon_name": "IconBriefcaseStroke"
          }
        ],
        "restId": "9001689989477935742"
      },
      "businessAccount": null,
      "creatorSubscriptionsCount": 0,
      "hasHiddenSubscriptions": false,
      "highlightsInfo": null,
      "hasGraduatedAccess": true,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": false,
      "defaultProfileImage": false,
      "followerCount": 3438694,
      "followingCount": 3593,
      "tweetCount": 60215,
      "listedCount": 4525,
      "mediaCount": 3761,
      "favoritesCount": 14449,
      "createdAt": "2009-01-03T19:24:16.000Z"
    },
    {
      "id": "1004932249",
      "username": "sample_user_00177",
      "name": "Sample User 00177",
      "bio": "Sample profile bio for Sample User 00177.",
      "location": "Sample City 457",
      "website": "https://example.com/link-94089/profile-00177",
      "pinnedTweetIds": [
        "2007590767998597953"
      ],
      "avatar": "https://example.com/images/sample-avatar-00177.jpg",
      "banner": "https://example.com/images/sample-banner-00177.jpg",
      "profileImageShape": "Square",
      "verified": false,
      "isBlueVerified": true,
      "verifiedType": "Business",
      "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": "9001009602696335894"
      },
      "businessAccount": null,
      "creatorSubscriptionsCount": 0,
      "hasHiddenSubscriptions": false,
      "highlightsInfo": null,
      "hasGraduatedAccess": true,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": false,
      "defaultProfileImage": false,
      "followerCount": 5040478,
      "followingCount": 10,
      "tweetCount": 33467,
      "listedCount": 8413,
      "mediaCount": 16291,
      "favoritesCount": 1865,
      "createdAt": "2016-02-15T16:05:21.000Z"
    },
    {
      "id": "10014087",
      "username": "sample_user_22227",
      "name": "Sample User 22227",
      "bio": "Sample profile bio for Sample User 22227.",
      "location": "Sample City 585",
      "website": "https://example.com/link-94089/profile-22227",
      "pinnedTweetIds": [
        "2004151465091274884"
      ],
      "avatar": "https://example.com/images/sample-avatar-22227.jpg",
      "banner": "https://example.com/images/sample-banner-22227.jpg",
      "profileImageShape": "Circle",
      "verified": false,
      "isBlueVerified": true,
      "verifiedType": "Government",
      "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_40733",
            "urlType": "DeepLink"
          },
          "badge": {
            "url": "https://example.com/link-94089/profile-29900/media/sample-media-18210.jpg"
          },
          "description": "Sample description for documentation 18045.",
          "userLabelType": "BusinessLabel",
          "userLabelDisplayType": "Badge"
        }
      },
      "defaultProfile": false,
      "defaultProfileImage": false,
      "followerCount": 6541864,
      "followingCount": 3650,
      "tweetCount": 16020,
      "listedCount": 11755,
      "mediaCount": 2118,
      "favoritesCount": 5369,
      "createdAt": "2008-12-16T17:20:24.000Z"
    },
    {
      "id": "100144151",
      "username": "sample_user_40864",
      "name": "Sample User 40864",
      "bio": "",
      "location": null,
      "website": "https://example.com/link-94089/profile-40864",
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-40864.jpg",
      "banner": "https://example.com/images/sample-banner-40864.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": 7181703,
      "followingCount": 2309,
      "tweetCount": 50280,
      "listedCount": 11455,
      "mediaCount": 1819,
      "favoritesCount": 70535,
      "createdAt": "2011-01-01T17:50:03.000Z"
    },
    {
      "id": "100112199",
      "username": "sample_user_23211",
      "name": "Sample User 23211",
      "bio": "Sample profile bio for Sample User 23211.",
      "location": "Sample City 337",
      "website": "https://example.com/link-94089/profile-23211",
      "pinnedTweetIds": [
        "2001783813960580691"
      ],
      "avatar": "https://example.com/images/sample-avatar-23211.jpg",
      "banner": "https://example.com/images/sample-banner-23211.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": 4429648,
      "followingCount": 594,
      "tweetCount": 3918,
      "listedCount": 12475,
      "mediaCount": 1211,
      "favoritesCount": 8132,
      "createdAt": "2011-12-03T03:06:19.000Z"
    },
    {
      "id": "1006229070126670670",
      "username": "sample_user_46095",
      "name": "Sample User 46095",
      "bio": "Sample profile bio for Sample User 46095.",
      "location": "Sample City 643",
      "website": "https://example.com/link-94089/profile-46095",
      "pinnedTweetIds": [
        "2002879484214916989"
      ],
      "avatar": "https://example.com/images/sample-avatar-46095.jpg",
      "banner": "https://example.com/images/sample-banner-46095.jpg",
      "profileImageShape": "Circle",
      "verified": false,
      "isBlueVerified": true,
      "verifiedType": null,
      "verifiedSince": null,
      "isIdentityVerified": false,
      "isProtected": false,
      "possiblySensitive": false,
      "profileInterstitialType": null,
      "withheldInCountries": [],
      "professional": {
        "type": "Creator",
        "category": [],
        "restId": "9006389953237489813"
      },
      "businessAccount": null,
      "creatorSubscriptionsCount": 0,
      "hasHiddenSubscriptions": false,
      "highlightsInfo": null,
      "hasGraduatedAccess": true,
      "isProfileTranslatable": false,
      "hasCustomTimelines": true,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": false,
      "followerCount": 4874823,
      "followingCount": 1877,
      "tweetCount": 10968,
      "listedCount": 5886,
      "mediaCount": 1184,
      "favoritesCount": 9536,
      "createdAt": "2019-12-03T01:14:36.000Z"
    },
    {
      "id": "10016591",
      "username": "sample_user_31804",
      "name": "Sample User 31804",
      "bio": "Sample profile bio for Sample User 31804.",
      "location": "Sample City 457",
      "website": "https://example.com/link-94089/profile-31804",
      "pinnedTweetIds": [
        "2006194732330529009"
      ],
      "avatar": "https://example.com/images/sample-avatar-31804.jpg",
      "banner": "https://example.com/images/sample-banner-31804.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": 933,
            "name": "Media Personality",
            "icon_name": "IconBriefcaseStroke"
          }
        ],
        "restId": "9002465772715329062"
      },
      "businessAccount": null,
      "creatorSubscriptionsCount": 0,
      "hasHiddenSubscriptions": false,
      "highlightsInfo": null,
      "hasGraduatedAccess": true,
      "isProfileTranslatable": false,
      "hasCustomTimelines": true,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": false,
      "defaultProfileImage": false,
      "followerCount": 5245710,
      "followingCount": 9666,
      "tweetCount": 165767,
      "listedCount": 10258,
      "mediaCount": 15864,
      "favoritesCount": 22989,
      "createdAt": "2009-11-22T22:32:41.000Z"
    },
    {
      "id": "1001548256123191814",
      "username": "sample_user_92818",
      "name": "Sample User 92818",
      "bio": "Sample profile bio for Sample User 92818.",
      "location": "Sample City 528",
      "website": "https://example.com/link-94089/profile-92818",
      "pinnedTweetIds": [
        "2001174341840129479"
      ],
      "avatar": "https://example.com/images/sample-avatar-92818.jpg",
      "banner": "https://example.com/images/sample-banner-92818.jpg",
      "profileImageShape": "Circle",
      "verified": false,
      "isBlueVerified": true,
      "verifiedType": "Government",
      "verifiedSince": null,
      "isIdentityVerified": false,
      "isProtected": false,
      "possiblySensitive": false,
      "profileInterstitialType": null,
      "withheldInCountries": [],
      "professional": {
        "type": "Creator",
        "category": [],
        "restId": "9001378932804071680"
      },
      "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_40733",
            "urlType": "DeepLink"
          },
          "badge": {
            "url": "https://example.com/link-94089/profile-29900/media/sample-media-18210.jpg"
          },
          "description": "Sample description for documentation 18045.",
          "userLabelType": "BusinessLabel",
          "userLabelDisplayType": "Badge"
        }
      },
      "defaultProfile": true,
      "defaultProfileImage": false,
      "followerCount": 5108609,
      "followingCount": 753,
      "tweetCount": 9191,
      "listedCount": 7851,
      "mediaCount": 2884,
      "favoritesCount": 6121,
      "createdAt": "2020-12-30T18:57:01.000Z"
    },
    {
      "id": "10074112",
      "username": "sample_user_51514",
      "name": "Sample User 51514",
      "bio": "Sample profile bio for Sample User 51514.",
      "location": null,
      "website": "https://example.com/link-94089/profile-51514",
      "pinnedTweetIds": [
        "2007954673942832888"
      ],
      "avatar": "https://example.com/images/sample-avatar-51514.jpg",
      "banner": "https://example.com/images/sample-banner-51514.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": 7959185,
      "followingCount": 484,
      "tweetCount": 204605,
      "listedCount": 18742,
      "mediaCount": 8575,
      "favoritesCount": 50,
      "createdAt": "2008-12-09T16:40:22.000Z"
    },
    {
      "id": "10016309",
      "username": "sample_user_59576",
      "name": "Sample User 59576",
      "bio": "Sample profile bio for Sample User 59576.",
      "location": "Sample City 250",
      "website": "https://example.com/link-94089/profile-59576",
      "pinnedTweetIds": [
        "2004025342157136961"
      ],
      "avatar": "https://example.com/images/sample-avatar-59576.jpg",
      "banner": "https://example.com/images/sample-banner-59576.jpg",
      "profileImageShape": "Square",
      "verified": false,
      "isBlueVerified": true,
      "verifiedType": "Business",
      "verifiedSince": null,
      "isIdentityVerified": false,
      "isProtected": false,
      "possiblySensitive": false,
      "profileInterstitialType": null,
      "withheldInCountries": [],
      "professional": {
        "type": "Business",
        "category": [],
        "restId": "9001494270842127833"
      },
      "businessAccount": null,
      "creatorSubscriptionsCount": 0,
      "hasHiddenSubscriptions": false,
      "highlightsInfo": null,
      "hasGraduatedAccess": true,
      "isProfileTranslatable": false,
      "hasCustomTimelines": true,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": false,
      "defaultProfileImage": false,
      "followerCount": 40112583,
      "followingCount": 120,
      "tweetCount": 10696,
      "listedCount": 43663,
      "mediaCount": 4130,
      "favoritesCount": 504,
      "createdAt": "2009-04-23T21:53:30.000Z"
    },
    {
      "id": "10015960",
      "username": "sample_user_28571",
      "name": "Sample User 28571",
      "bio": "Sample profile bio for Sample User 28571.",
      "location": "Sample City 982",
      "website": "https://example.com/link-94089/profile-28571",
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-28571.jpg",
      "banner": "https://example.com/images/sample-banner-28571.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": 948,
            "name": "Actor",
            "icon_name": "IconBriefcaseStroke"
          }
        ],
        "restId": "9007736652300020868"
      },
      "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_69268",
            "urlType": "DeepLink"
          },
          "badge": {
            "url": "https://example.com/link-94089/profile-29900/media/sample-media-50434.jpg"
          },
          "description": "Sample description for documentation 68894.",
          "userLabelType": "BusinessLabel",
          "userLabelDisplayType": "Badge"
        }
      },
      "defaultProfile": false,
      "defaultProfileImage": false,
      "followerCount": 2556162,
      "followingCount": 612,
      "tweetCount": 26270,
      "listedCount": 4198,
      "mediaCount": 2713,
      "favoritesCount": 13810,
      "createdAt": "2009-04-20T18:21:04.000Z"
    },
    {
      "id": "1002989103939089142",
      "username": "sample_user_00560",
      "name": "Sample User 00560",
      "bio": "Sample profile bio for Sample User 00560.",
      "location": "Sample City 457",
      "website": "https://example.com/link-94089/profile-00560",
      "pinnedTweetIds": [
        "2001051649036143321"
      ],
      "avatar": "https://example.com/images/sample-avatar-00560.jpg",
      "banner": "https://example.com/images/sample-banner-00560.jpg",
      "profileImageShape": "Circle",
      "verified": false,
      "isBlueVerified": true,
      "verifiedType": null,
      "verifiedSince": null,
      "isIdentityVerified": false,
      "isProtected": false,
      "possiblySensitive": false,
      "profileInterstitialType": null,
      "withheldInCountries": [],
      "professional": {
        "type": "Business",
        "category": [],
        "restId": "9005958866210894823"
      },
      "businessAccount": null,
      "creatorSubscriptionsCount": 0,
      "hasHiddenSubscriptions": false,
      "highlightsInfo": null,
      "hasGraduatedAccess": true,
      "isProfileTranslatable": false,
      "hasCustomTimelines": true,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": false,
      "followerCount": 1598876,
      "followingCount": 845,
      "tweetCount": 4132,
      "listedCount": 1400,
      "mediaCount": 464,
      "favoritesCount": 3171,
      "createdAt": "2021-12-06T19:00:41.000Z"
    },
    {
      "id": "10011567",
      "username": "sample_user_46742",
      "name": "Sample User 46742",
      "bio": "Sample profile bio for Sample User 46742.",
      "location": "Sample City 865",
      "website": "https://example.com/link-94089/profile-46742",
      "pinnedTweetIds": [
        "2001611966223933842"
      ],
      "avatar": "https://example.com/images/sample-avatar-46742.jpg",
      "banner": "https://example.com/images/sample-banner-46742.jpg",
      "profileImageShape": "Circle",
      "verified": false,
      "isBlueVerified": true,
      "verifiedType": null,
      "verifiedSince": null,
      "isIdentityVerified": false,
      "isProtected": false,
      "possiblySensitive": false,
      "profileInterstitialType": null,
      "withheldInCountries": [],
      "professional": {
        "type": "Creator",
        "category": [],
        "restId": "9001155013850626954"
      },
      "businessAccount": null,
      "creatorSubscriptionsCount": 0,
      "hasHiddenSubscriptions": false,
      "highlightsInfo": null,
      "hasGraduatedAccess": true,
      "isProfileTranslatable": false,
      "hasCustomTimelines": true,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": false,
      "defaultProfileImage": false,
      "followerCount": 3205171,
      "followingCount": 4916,
      "tweetCount": 93017,
      "listedCount": 6613,
      "mediaCount": 10529,
      "favoritesCount": 4817,
      "createdAt": "2008-12-20T14:32:44.000Z"
    },
    {
      "id": "100144217",
      "username": "sample_user_66108",
      "name": "Sample User 66108",
      "bio": "Sample profile bio for Sample User 66108.",
      "location": "Sample City 458",
      "website": "https://example.com/link-94089/profile-66108",
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-66108.jpg",
      "banner": "https://example.com/images/sample-banner-66108.jpg",
      "profileImageShape": "Circle",
      "verified": false,
      "isBlueVerified": true,
      "verifiedType": "Government",
      "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": 6016243,
      "followingCount": 807,
      "tweetCount": 19781,
      "listedCount": 17097,
      "mediaCount": 3806,
      "favoritesCount": 931,
      "createdAt": "2010-11-17T23:52:35.000Z"
    },
    {
      "id": "10016794",
      "username": "sample_user_45834",
      "name": "Sample User 45834",
      "bio": "Sample profile bio for Sample User 45834.",
      "location": "Sample City 713",
      "website": "https://example.com/link-94089/profile-45834",
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-45834.jpg",
      "banner": "https://example.com/images/sample-banner-45834.jpg",
      "profileImageShape": "Circle",
      "verified": false,
      "isBlueVerified": true,
      "verifiedType": "Government",
      "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": 7099875,
      "followingCount": 5391,
      "tweetCount": 55872,
      "listedCount": 17947,
      "mediaCount": 8875,
      "favoritesCount": 1404,
      "createdAt": "2009-03-06T03:20:20.000Z"
    },
    {
      "id": "10020623",
      "username": "sample_user_11511",
      "name": "Sample User 11511",
      "bio": "Sample profile bio for Sample User 11511.",
      "location": null,
      "website": "https://example.com/link-94089/profile-11511",
      "pinnedTweetIds": [
        "2001162637645088719"
      ],
      "avatar": "https://example.com/images/sample-avatar-11511.jpg",
      "banner": "https://example.com/images/sample-banner-11511.jpg",
      "profileImageShape": "Square",
      "verified": false,
      "isBlueVerified": true,
      "verifiedType": "Business",
      "verifiedSince": null,
      "isIdentityVerified": false,
      "isProtected": false,
      "possiblySensitive": false,
      "profileInterstitialType": null,
      "withheldInCountries": [],
      "professional": {
        "type": "Business",
        "category": [],
        "restId": "9001114828117980887"
      },
      "businessAccount": null,
      "creatorSubscriptionsCount": 0,
      "hasHiddenSubscriptions": false,
      "highlightsInfo": null,
      "hasGraduatedAccess": true,
      "isProfileTranslatable": false,
      "hasCustomTimelines": true,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": false,
      "defaultProfileImage": false,
      "followerCount": 24406674,
      "followingCount": 74,
      "tweetCount": 9821,
      "listedCount": 27631,
      "mediaCount": 1873,
      "favoritesCount": 7252,
      "createdAt": "2008-02-10T01:12:32.000Z"
    },
    {
      "id": "100105043",
      "username": "sample_user_17189",
      "name": "Sample User 17189",
      "bio": "Sample profile bio for Sample User 17189.",
      "location": null,
      "website": "https://example.com/link-94089/profile-17189",
      "pinnedTweetIds": [
        "2001667962071639630"
      ],
      "avatar": "https://example.com/images/sample-avatar-17189.jpg",
      "banner": "https://example.com/images/sample-banner-17189.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": 4043522,
      "followingCount": 2799,
      "tweetCount": 25926,
      "listedCount": 7482,
      "mediaCount": 2709,
      "favoritesCount": 20118,
      "createdAt": "2011-02-28T23:33:33.000Z"
    },
    {
      "id": "10013697",
      "username": "sample_user_79990",
      "name": "Sample User 79990",
      "bio": "Sample profile bio for Sample User 79990.",
      "location": "Sample City 457",
      "website": "https://example.com/link-94089/profile-79990",
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-79990.jpg",
      "banner": "https://example.com/images/sample-banner-79990.jpg",
      "profileImageShape": "Square",
      "verified": false,
      "isBlueVerified": true,
      "verifiedType": "Business",
      "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": "9009218663398184829"
      },
      "businessAccount": null,
      "creatorSubscriptionsCount": 0,
      "hasHiddenSubscriptions": false,
      "highlightsInfo": null,
      "hasGraduatedAccess": true,
      "isProfileTranslatable": false,
      "hasCustomTimelines": true,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": false,
      "defaultProfileImage": false,
      "followerCount": 3539186,
      "followingCount": 805,
      "tweetCount": 245972,
      "listedCount": 8221,
      "mediaCount": 71341,
      "favoritesCount": 7635,
      "createdAt": "2009-02-10T21:04:49.000Z"
    },
    {
      "id": "1001249435810977399",
      "username": "sample_user_35031",
      "name": "Sample User 35031",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-35031.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": 0,
      "followingCount": 10,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:12.000Z"
    },
    {
      "id": "1001030260530582432",
      "username": "sample_user_90243",
      "name": "Sample User 90243",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-90243.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": true,
      "followerCount": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:55.000Z"
    },
    {
      "id": "1002141922283036154",
      "username": "sample_user_49438",
      "name": "Sample User 49438",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-49438.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": 0,
      "followingCount": 38,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:01.000Z"
    },
    {
      "id": "1001734135992073809",
      "username": "sample_user_04963",
      "name": "Sample User 04963",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-04963.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": true,
      "followerCount": 0,
      "followingCount": 4,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:47:15.000Z"
    },
    {
      "id": "1003357192855335205",
      "username": "sample_user_35740",
      "name": "Sample User 35740",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-35740.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": 0,
      "followingCount": 10,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:43:44.000Z"
    },
    {
      "id": "1001264721456342129",
      "username": "sample_user_55655",
      "name": "Sample User 55655",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-55655.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": true,
      "followerCount": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:39.000Z"
    },
    {
      "id": "1007572344033247128",
      "username": "sample_user_48565",
      "name": "Sample User 48565",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-48565.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": false,
      "followerCount": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:39:19.000Z"
    },
    {
      "id": "1001263060873742513",
      "username": "sample_user_58811",
      "name": "Sample User 58811",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-58811.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": true,
      "followerCount": 0,
      "followingCount": 3,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:16.000Z"
    },
    {
      "id": "1001641940312141882",
      "username": "sample_user_78764",
      "name": "Sample User 78764",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-78764.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": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:55.000Z"
    },
    {
      "id": "1001436023907571535",
      "username": "sample_user_64783",
      "name": "Sample User 64783",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-64783.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": true,
      "followerCount": 0,
      "followingCount": 3,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:47:17.000Z"
    },
    {
      "id": "1001181706774722711",
      "username": "sample_user_78523",
      "name": "Sample User 78523",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [
        "2003567571374084562"
      ],
      "avatar": "https://example.com/images/sample-avatar-78523.jpg",
      "banner": "https://example.com/images/sample-banner-78523.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": 139,
      "followingCount": 196,
      "tweetCount": 5822,
      "listedCount": 0,
      "mediaCount": 684,
      "favoritesCount": 3974,
      "createdAt": "2022-07-03T01:40:27.000Z"
    },
    {
      "id": "1006081864165875172",
      "username": "sample_user_26974",
      "name": "Sample User 26974",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-26974.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": 0,
      "followingCount": 6,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:45:40.000Z"
    },
    {
      "id": "1001816171870390383",
      "username": "sample_user_70646",
      "name": "Sample User 70646",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-70646.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": true,
      "followerCount": 0,
      "followingCount": 1,
      "tweetCount": 3,
      "listedCount": 0,
      "mediaCount": 1,
      "favoritesCount": 0,
      "createdAt": "2025-09-30T23:23:48.000Z"
    },
    {
      "id": "1005710242145459013",
      "username": "sample_user_79735",
      "name": "Sample User 79735",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-79735.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": true,
      "followerCount": 2,
      "followingCount": 21,
      "tweetCount": 35,
      "listedCount": 0,
      "mediaCount": 6,
      "favoritesCount": 1,
      "createdAt": "2025-09-22T21:19:33.000Z"
    },
    {
      "id": "1001014325068222241",
      "username": "sample_user_49858",
      "name": "Sample User 49858",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-49858.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": false,
      "followerCount": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:44:12.000Z"
    },
    {
      "id": "1002401412045303570",
      "username": "sample_user_87486",
      "name": "Sample User 87486",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-87486.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": true,
      "followerCount": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:38:51.000Z"
    },
    {
      "id": "1001144693125879907",
      "username": "sample_user_90132",
      "name": "Sample User 90132",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-90132.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": false,
      "followerCount": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:24.000Z"
    },
    {
      "id": "1001649137738729766",
      "username": "sample_user_67682",
      "name": "Sample User 67682",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-67682.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": 0,
      "followingCount": 3,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:47:00.000Z"
    },
    {
      "id": "1005236872335573473",
      "username": "sample_user_85303",
      "name": "Sample User 85303",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-85303.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": true,
      "followerCount": 0,
      "followingCount": 3,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:44:52.000Z"
    },
    {
      "id": "1001031337965437915",
      "username": "sample_user_51551",
      "name": "Sample User 51551",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-51551.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": true,
      "followerCount": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:47:08.000Z"
    },
    {
      "id": "1006456970312706957",
      "username": "sample_user_62588",
      "name": "Sample User 62588",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-62588.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": true,
      "followerCount": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:58.000Z"
    },
    {
      "id": "1001239314081425955",
      "username": "sample_user_71346",
      "name": "Sample User 71346",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-71346.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": true,
      "followerCount": 0,
      "followingCount": 0,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:48.000Z"
    },
    {
      "id": "1007419157108831232",
      "username": "sample_user_09574",
      "name": "Sample User 09574",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-09574.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": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:42:34.000Z"
    },
    {
      "id": "1007055376029644621",
      "username": "sample_user_58779",
      "name": "Sample User 58779",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-58779.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": 0,
      "followingCount": 53,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:42:51.000Z"
    },
    {
      "id": "1003802609446540557",
      "username": "sample_user_90858",
      "name": "Sample User 90858",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-90858.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": true,
      "followerCount": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:47:02.000Z"
    },
    {
      "id": "1009441998763470966",
      "username": "sample_user_89742",
      "name": "Sample User 89742",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-89742.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": true,
      "followerCount": 0,
      "followingCount": 2,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:47:05.000Z"
    },
    {
      "id": "1004681201792597055",
      "username": "sample_user_70666",
      "name": "Sample User 70666",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-70666.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": false,
      "followerCount": 0,
      "followingCount": 2,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:48.000Z"
    },
    {
      "id": "1001390251380208370",
      "username": "sample_user_22589",
      "name": "Sample User 22589",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-22589.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": true,
      "followerCount": 0,
      "followingCount": 3,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:47:06.000Z"
    },
    {
      "id": "1001740156743096541",
      "username": "sample_user_80465",
      "name": "Sample User 80465",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-80465.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": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:45:03.000Z"
    },
    {
      "id": "1003174543253897950",
      "username": "sample_user_08398",
      "name": "Sample User 08398",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-08398.jpg",
      "banner": "https://example.com/images/sample-banner-08398.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": 9,
      "followingCount": 36,
      "tweetCount": 1148,
      "listedCount": 0,
      "mediaCount": 2,
      "favoritesCount": 912,
      "createdAt": "2021-08-21T12:43:06.000Z"
    },
    {
      "id": "1001776127300175876",
      "username": "sample_user_65653",
      "name": "Sample User 65653",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-65653.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": 0,
      "followingCount": 4,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:45:42.000Z"
    },
    {
      "id": "1009837791731795920",
      "username": "sample_user_41160",
      "name": "Sample User 41160",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-41160.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": true,
      "followerCount": 0,
      "followingCount": 4,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:59.000Z"
    },
    {
      "id": "1001794935278552965",
      "username": "sample_user_56515",
      "name": "Sample User 56515",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-56515.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": true,
      "followerCount": 0,
      "followingCount": 3,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:45:58.000Z"
    },
    {
      "id": "1001078804231565032",
      "username": "sample_user_64647",
      "name": "Sample User 64647",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-64647.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": 0,
      "followingCount": 0,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:38.000Z"
    },
    {
      "id": "1002330369510848052",
      "username": "sample_user_30114",
      "name": "Sample User 30114",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-30114.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": true,
      "followerCount": 0,
      "followingCount": 3,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:47:00.000Z"
    },
    {
      "id": "1001673843194239529",
      "username": "sample_user_84396",
      "name": "Sample User 84396",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-84396.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": 0,
      "followingCount": 5,
      "tweetCount": 8,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 3,
      "createdAt": "2025-10-01T06:57:27.000Z"
    },
    {
      "id": "1002282341290672612",
      "username": "sample_user_76576",
      "name": "Sample User 76576",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-76576.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": 0,
      "followingCount": 2,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:44:30.000Z"
    },
    {
      "id": "1001221810168893636",
      "username": "sample_user_28815",
      "name": "Sample User 28815",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-28815.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": 0,
      "followingCount": 3,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:44:12.000Z"
    },
    {
      "id": "1001646989759182116",
      "username": "sample_user_92943",
      "name": "Sample User 92943",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-92943.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": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:43:26.000Z"
    },
    {
      "id": "1001277423649231946",
      "username": "sample_user_20299",
      "name": "Sample User 20299",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-20299.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": false,
      "followerCount": 0,
      "followingCount": 0,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:45.000Z"
    },
    {
      "id": "1007754786203296009",
      "username": "sample_user_66809",
      "name": "Sample User 66809",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-66809.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": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:42.000Z"
    },
    {
      "id": "1001423456923195614",
      "username": "sample_user_03599",
      "name": "Sample User 03599",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-03599.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": 0,
      "followingCount": 17,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:45:34.000Z"
    },
    {
      "id": "1003170623373202317",
      "username": "sample_user_57485",
      "name": "Sample User 57485",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-57485.jpg",
      "banner": null,
      "profileImageShape": "Circle",
      "verified": false,
      "isBlueVerified": false,
      "verifiedType": null,
      "verifiedSince": null,
      "isIdentityVerified": false,
      "isProtected": true,
      "possiblySensitive": false,
      "profileInterstitialType": null,
      "withheldInCountries": [],
      "professional": null,
      "businessAccount": null,
      "creatorSubscriptionsCount": 0,
      "hasHiddenSubscriptions": false,
      "highlightsInfo": null,
      "hasGraduatedAccess": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": false,
      "followerCount": 0,
      "followingCount": 8,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:45:53.000Z"
    },
    {
      "id": "1004454400193229455",
      "username": "sample_user_38749",
      "name": "Sample User 38749",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-38749.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": 0,
      "followingCount": 10,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:45:56.000Z"
    },
    {
      "id": "100199442",
      "username": "sample_user_82110",
      "name": "Sample User 82110",
      "bio": "",
      "location": "Sample City 720",
      "website": "https://example.com/link-94089/profile-82110",
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-82110.jpg",
      "banner": "https://example.com/images/sample-banner-82110.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": 48,
      "followingCount": 84,
      "tweetCount": 230,
      "listedCount": 0,
      "mediaCount": 2,
      "favoritesCount": 100,
      "createdAt": "2010-06-22T09:13:35.000Z"
    },
    {
      "id": "1003738881993176535",
      "username": "sample_user_51740",
      "name": "Sample User 51740",
      "bio": "Sample profile bio for Sample User 51740.",
      "location": "Sample City 012",
      "website": null,
      "pinnedTweetIds": [
        "2008685407130212701"
      ],
      "avatar": "https://example.com/images/sample-avatar-51740.jpg",
      "banner": null,
      "profileImageShape": "Circle",
      "verified": false,
      "isBlueVerified": false,
      "verifiedType": null,
      "verifiedSince": null,
      "isIdentityVerified": false,
      "isProtected": true,
      "possiblySensitive": true,
      "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": 5,
      "followingCount": 67,
      "tweetCount": 89,
      "listedCount": 0,
      "mediaCount": 2,
      "favoritesCount": 4988,
      "createdAt": "2020-08-04T10:55:41.000Z"
    },
    {
      "id": "1001755153231446456",
      "username": "sample_user_11318",
      "name": "Sample User 11318",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-11318.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": false,
      "followerCount": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:45:44.000Z"
    },
    {
      "id": "1006802469595229900",
      "username": "sample_user_56826",
      "name": "Sample User 56826",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-56826.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": 0,
      "followingCount": 1,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:57.000Z"
    },
    {
      "id": "1001531807979269984",
      "username": "sample_user_99897",
      "name": "Sample User 99897",
      "bio": "Sample profile bio for Sample User 99897.",
      "location": "Sample City 785",
      "website": null,
      "pinnedTweetIds": [
        "2001630704832715508"
      ],
      "avatar": "https://example.com/images/sample-avatar-99897.jpg",
      "banner": "https://example.com/images/sample-banner-99897.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": 205,
      "followingCount": 1355,
      "tweetCount": 2809,
      "listedCount": 1,
      "mediaCount": 123,
      "favoritesCount": 9120,
      "createdAt": "2025-02-26T06:34:23.000Z"
    },
    {
      "id": "1001379445001713966",
      "username": "sample_user_79150",
      "name": "Sample User 79150",
      "bio": "",
      "location": null,
      "website": null,
      "pinnedTweetIds": [],
      "avatar": "https://example.com/images/sample-avatar-79150.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": false,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": true,
      "defaultProfileImage": true,
      "followerCount": 0,
      "followingCount": 0,
      "tweetCount": 0,
      "listedCount": 0,
      "mediaCount": 0,
      "favoritesCount": 0,
      "createdAt": "2025-10-02T05:46:27.000Z"
    }
  ],
  "pagination": {
    "nextCursor": "1844847872833209866|1973625928105852856",
    "prevCursor": "-1|1973625928105852929"
  }
}

API Playground

GET/tw-v2/user/followers

Press ⌘ + Enter to execute

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

Click "Try It!" to see the response