Tweets
Get tweet
Retrieve one tweet by numeric ID with full text, author fields, media, quote and reply context, and metrics
GET
Get tweet
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.
Get tweet returns one tweet by numeric ID. It is also useful as a tweet lookup
API, single tweet API, tweet info API, X tweet API, or tweet details endpoint.
The canonical endpoint remains
GET /api/v1/x/tweets/{id}.GET /api/v1/x/tweets/{id} when a workflow needs one tweet plus author context.
Store tweet_id, text, author_id, author_username, author_followers,
author_verified, author_profile_picture, created_at, conversation_id,
is_reply, is_quote_status, is_note_tweet, tweet_source,
quote_tweet_id, metrics, and media_urls with the downstream record.
Direct tweet handoff
Pass a 15 to 20 digit numeric tweet ID in the path. If a user gives a tweet URL, extract the final status ID first. URLs, usernames, and short IDs return400 invalid_tweet_id. Use the response when you need normalized tweet text,
optional author data, engagement counts, quote metadata, conversation context,
Note Tweet text, source, and media URLs for 1 record.
Single row
Store one durable row per ID with
tweet_id, text, timestamps, flags,
metrics, and media URLs.Author context
Use embedded
author fields when returned instead of making a second user
lookup for the same row.Quote context
Store
isQuoteStatus and quoted_tweet.id when you need quote joins or
attribution.Conversation joins
Store
conversationId and isReply when the row feeds a thread, reply, or
moderation workflow.Long-form tweets
Use
isNoteTweet and tweet.text for complete Note Tweet text returned by
this endpoint.Media assets
Store each
media[].mediaUrl for review queues, warehouses, and downstream
enrichment.Path parameters
Numeric tweet ID, 15-20 digits. If you have a tweet URL, use the final status
ID.
Which tweet endpoint?
One tweet by ID
Use
GET /x/tweets/{id} for one tweet’s text, author, media, quote or reply
flags, metrics, and Note Tweet text.Many tweet IDs
Use
Get tweets (batch) when you already
have multiple numeric IDs.Keyword or advanced search
Use
Search tweets when you need keyword,
operator, author, date, media, engagement, or verification filters.Thread context
Use
Get tweet thread when the next action
needs surrounding conversation rows.Engagement lists
Use replies, quote tweets, retweeters, or favoriters pages when you need
users or tweets connected to this tweet.
Saved exports
Use
Create extraction with
reply_extractor, quote_extractor, repost_extractor,
thread_extractor, or tweet_search_extractor when you need CSV, JSON, or
XLSX output.Headers
Your API key. Session cookie authentication is also supported.
Response
- 200 OK
- 400 Invalid tweet ID
- 401 Unauthenticated
- 402 Subscription required
- 404 Tweet not found
- 429 Rate Limit Exceeded
- 424 Dependency Failed
Next steps: Search Tweets to find tweets by query, or Get User to look up the author profile.
Last modified on May 24, 2026
Get tweet