Skip to main content
POST
/
retweeters
Retweeters List
curl --request POST \
  --url https://api.sorsa.io/v3/retweeters \
  --header 'ApiKey: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "next_cursor": "JKHSJFHADUYJKSDy2y3u123",
  "tweet_link": "<string>"
}
'
{
  "next_cursor": "<string>",
  "users": [
    {
      "bio_urls": [
        "<string>"
      ],
      "can_dm": false,
      "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,
      "pinned_tweet_ids": [
        "<string>"
      ],
      "possibly_sensitive": false,
      "profile_background_image_url": "https://pbs.twimg.com/profile_banners/44196397/123",
      "profile_image_url": "https://pbs.twimg.com/profile_images/123/photo.jpg",
      "protected": false,
      "tweets_count": 5000,
      "username": "elonmusk",
      "verified": true
    }
  ]
}

Authorizations

ApiKey
string
header
required

Body

application/json

Retweets request

next_cursor
string

Pagination cursor from a previous response.

Example:

"JKHSJFHADUYJKSDy2y3u123"

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

Response

OK

next_cursor
string

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

users
object[]

Array of user profile objects.