TwitterAPIs Docs
API ReferenceTweet Details

Tweet Retweeters

Fetch the users who retweeted a given tweet, cursor-paginated. Useful for amplification analysis and identifying the accounts that spread a post. Cost: $0.0008 per call.

GET
/tweet/retweeters

Authorization

bearerAuth
AuthorizationBearer <token>

Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.

In: header

Query Parameters

tweet_id*string

Numeric ID of the tweet.

cursor?string

Pagination cursor from a previous response.

Response Body

application/json

curl -X GET "https://example.com/tweet/retweeters?tweet_id=1759123456789012345"
{  "users": [    {      "id": "9921",      "username": "devjane",      "name": "Jane",      "followers_count": 4200,      "is_blue_verified": false    }  ],  "has_next_page": true,  "next_cursor": "DAABCgABF...",  "status": "success"}