Skip to main content
GET
/
x
/
tweets
/
{id}
/
thread
Get tweet thread
curl --request GET \
  --url https://xquik.com/api/v1/x/tweets/{id}/thread \
  --header 'x-api-key: <api-key>'

Documentation Index

Fetch the complete documentation index at: https://docs.xquik.com/llms.txt

Use this file to discover all available pages before exploring further.

Requested result counts are upper bounds for paid authenticated calls. When remaining credits cannot cover the full page or ID list, Xquik returns fewer results. If zero paid results are affordable, it returns 402 insufficient_credits.
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
Use GET /x/tweets/{id}/thread when a workflow needs ordered thread context as durable rows. The Node.js and Python snippets write one JSON line per tweet instead of printing the full page response. Store source_tweet_id, thread_tweet_id, text, author_id, author_username, author_name, author_followers, author_verified, author_profile_picture, created_at, conversation_id, in_reply_to_id, media_urls, and next_cursor for downstream jobs.

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",
      "author": {
        "id": "9876543210",
        "username": "xquik",
        "name": "Xquik",
        "followers": 12000,
        "verified": true,
        "profilePicture": "https://pbs.twimg.com/profile_images/example.jpg"
      }
    }
  ],
  "has_next_page": false,
  "next_cursor": ""
}
Last modified on May 19, 2026