TwitterAPIs Docs
API ReferenceTweet Details

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.

GET
/tweet/thread

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 any tweet in the thread.

cursor?string

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"}