Tweet Thread
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.
Authorization
bearerAuth Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.
In: header
Query Parameters
Numeric ID of any tweet in the thread.
Pagination cursor for very long threads.
Response Body
application/json
curl -X GET "https://example.com/tweet/thread?tweet_id=1759123456789012345"{ "thread": [ { "id": "1759123456789012345", "text": "1/ Here is how we made the API 100x cheaper.", "author": { "id": "745273", "username": "naval" } }, { "id": "1759123456789012346", "text": "2/ It starts with batching ~20 tweets per call.", "author": { "id": "745273", "username": "naval" } } ], "has_next_page": false, "next_cursor": "", "status": "success"}Tweet Retweeters GET
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.
User Info by Username GET
Resolve a username into the full user object: bio, follower and following counts, verification status, location, and avatar. The canonical entry point for profile lookups. Cost: $0.0008 per call.