Look up a single tweet by ID with author details, engagement metrics, and media attachments
curl --request GET \
--url https://api.example.com/x/tweets/{id} \
--header 'x-api-key: <x-api-key>'curl https://xquik.com/api/v1/x/tweets/1893456789012345678 \
-H "x-api-key: xq_YOUR_KEY_HERE" | jq
Show tweet object
isQuoteStatus is true.{
"tweet": {
"id": "1893456789012345678",
"text": "Introducing our new extraction API. Ship faster.",
"createdAt": "2026-02-24T14:30:00.000Z",
"isNoteTweet": false,
"isReply": false,
"isQuoteStatus": true,
"conversationId": "1893456789012345678",
"source": "Twitter Web App",
"entities": {
"urls": [
{
"display_url": "xquik.com/blog/extracti...",
"expanded_url": "https://xquik.com/blog/extraction-api",
"url": "https://t.co/abc123"
}
],
"hashtags": [],
"user_mentions": []
},
"quoted_tweet": {
"id": "1893000000000000000",
"text": "What API tools are you shipping this week?",
"author": {
"id": "111222333",
"username": "devtools"
}
},
"retweetCount": 320,
"replyCount": 85,
"likeCount": 1400,
"quoteCount": 45,
"viewCount": 250000,
"bookmarkCount": 210,
"media": [
{
"mediaUrl": "https://pbs.twimg.com/media/example.jpg",
"type": "photo",
"url": "https://t.co/abc123"
}
]
},
"author": {
"id": "987654321",
"username": "xquikcom",
"followers": 10000,
"verified": true,
"profilePicture": "https://pbs.twimg.com/profile_images/xquik/photo.jpg"
}
}
{ "error": "invalid_tweet_id" }
{ "error": "unauthenticated" }
x-api-key header value.{ "error": "no_subscription" }
no_subscription, subscription_inactive, usage_limit_reached.
For MPP requests without a valid payment credential, 402 returns a WWW-Authenticate: Payment challenge header instead.{ "error": "tweet_not_found" }
{ "error": "x_api_unavailable" }
Was this page helpful?
curl --request GET \
--url https://api.example.com/x/tweets/{id} \
--header 'x-api-key: <x-api-key>'