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.
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"}Tweet Replies GET
Fetch the direct replies to a given tweet, cursor-paginated. Combine with Tweet Detail to reconstruct a discussion or measure reply sentiment. Cost: $0.0008 per call.
Tweet Thread GET
Given a tweet ID anywhere in a thread, return the ordered list of tweets that make up the author's connected thread. Saves you from manually walking the reply chain. Cost: $0.0008 per call.