Skip to main content
GET
/
x
/
tweets
/
{id}
/
thread
Get tweet thread
curl --request GET \
  --url https://api.example.com/x/tweets/{id}/thread \
  --header 'x-api-key: <x-api-key>'
1 credit per tweet returned · All plans from $0.00012/credit · Accepts MPP
curl "https://xquik.com/api/v1/x/tweets/1893456789012345678/thread" \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Path parameters

id
string
required
Tweet ID (numeric string).

Query parameters

cursor
string
Pagination cursor from a previous response. Omit for the first page.

Headers

x-api-key
string
required
Your API key. Session cookie authentication is also supported.

Response

tweets
object[]
Array of tweets in the thread, ordered chronologically.
has_next_page
boolean
Whether more results are available.
next_cursor
string
Cursor for the next page.
{
  "tweets": [
    {
      "id": "1893456789012345678",
      "text": "Thread starts here...",
      "createdAt": "2026-03-27T10:00:00.000Z"
    }
  ],
  "has_next_page": false,
  "next_cursor": ""
}