Skip to main content
curl https://xquik.com/api/v1/x/tweets/1893456789012345678 \
  -H "x-api-key: xq_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2" | jq

Path parameters

tweetId
string
required
The tweet ID to look up.

Headers

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

Response

tweet
object
The tweet data.
author
object
The tweet author. Omitted if author data is unavailable.
{
  "tweet": {
    "id": "1893456789012345678",
    "text": "Introducing our new extraction API. Ship faster.",
    "createdAt": "2026-02-24T14:30:00.000Z",
    "retweetCount": 320,
    "replyCount": 85,
    "likeCount": 1400,
    "quoteCount": 45,
    "viewCount": 250000,
    "bookmarkCount": 210
  },
  "author": {
    "id": "987654321",
    "username": "xquikcom",
    "followers": 10000,
    "verified": true,
    "profilePicture": "https://pbs.twimg.com/profile_images/xquik/photo.jpg"
  }
}
Next steps: Search Tweets to find tweets by query, or Get User to look up the author profile.