Skip to main content
GET
/
x
/
tweets
Get tweets (batch)
curl --request GET \
  --url https://api.example.com/x/tweets \
  --header 'x-api-key: <x-api-key>'
1 credit per tweet returned · All plans from $0.00012/credit
curl "https://xquik.com/api/v1/x/tweets?ids=1893456789012345678,1893456789012345679" \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Query parameters

ids
string
required
Comma-separated tweet IDs. Maximum 100 per request.

Headers

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

Response

tweets
object[]
Array of tweets matching the requested IDs.
has_next_page
boolean
Always false for batch requests.
next_cursor
string
Always empty for batch requests.
{
  "tweets": [
    {
      "id": "1893456789012345678",
      "text": "Hello world!",
      "createdAt": "2026-03-27T10:00:00.000Z",
      "likeCount": 42,
      "retweetCount": 5
    }
  ],
  "has_next_page": false,
  "next_cursor": ""
}