v3

latestOpenAPI 3.0.32026-08-02415689.9 KB
Tweets

Retweeters List

Returns a paginated list of users who retweeted the specified tweet, sorted by retweet time (newest first). Each entry contains the retweeter's profile data. Note: the response uses the users format (common.UsersResponse), not tweets.

post/retweeters

Request body

next_cursorstring

Pagination cursor from a previous response.

tweet_linkstring

Full URL of the tweet (e.g. https://x.com/user/status/123) or just the tweet ID.

Example request

{
  "next_cursor": "JKHSJFHADUYJKSDy2y3u123"
}

Response

OK

next_cursorstring

Cursor for fetching the next page of results. Null or absent if no more pages.

Example response

{
  "users": [
    {
      "created_at": "2009-06-02T20:12:29Z",
      "description": "Bio text",
      "display_name": "Elon Musk",
      "favourites_count": 1200,
      "followers_count": 100000,
      "followings_count": 500,
      "id": "44196397",
      "location": "Austin, TX",
      "media_count": 300,
      "profile_background_image_url": "https://pbs.twimg.com/profile_banners/44196397/123",
      "profile_image_url": "https://pbs.twimg.com/profile_images/123/photo.jpg",
      "tweets_count": 5000,
      "username": "elonmusk",
      "verified": true
    }
  ]
}