Skip to main content
GET
/
x
/
tweets
Get tweets (batch)
curl --request GET \
  --url https://xquik.com/api/v1/x/tweets \
  --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
curl "https://xquik.com/api/v1/x/tweets?ids=1893456789012345678,1893456789012345679" \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq
The Node.js and Python snippets shape durable tweet rows instead of printing full response pages. Persist tweetRows or tweet_rows and missingIds or missing_ids with the original ID list so retries only request missing tweets.

Direct batch tweet handoff

Use GET /x/tweets when a CRM, warehouse, newsroom, moderation queue, or agent workflow already has tweet IDs and needs tweet text, authors, metrics, media URLs, and missing-ID handling in one response. Use Get Tweet when you need one tweet by ID, or Search Tweets when you need to find tweets by query. Store requested_ids, tweet_id, text, author_id, author_username, author_name, author_followers, author_verified, author_profile_picture, created_at, conversation_id, engagement counts, media URLs, has_next_page, and next_cursor. Join returned tweets by tweet_id instead of relying on response order. Send at most 100 IDs per request. Batch requests always return has_next_page: false and next_cursor: ""; zero affordable results return 402 insufficient_credits.

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,
      "author": {
        "id": "9876543210",
        "username": "xquikcom",
        "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