Social Media
X Tweet Details
Get full details for a single tweet by id — text, author, engagement counts, media, and reply context — as JSON. Costs 1 credit per request.
POST/api/v1/x/tweet
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsontweet_idstringrequiredThe numeric tweet id.
Example: 1808168603721650364
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.x.tweet(tweet_id="1808168603721650364")
print(results)Response
"tweet_id": "1808168603721650364",
"type": "tweet",
"screen_name": "OpenAI",
"text": "We are researching new ways for people to use artificial intelligence in everyday work.",
"display_text": "We are researching new ways for people to use artificial intelligence in everyday work.",
"lang": "en",
"created_at": "Tue Jul 02 17:04:22 +0000 2026",
"favorites": 18420,
"retweets": 2140,
"replies": 690,
"quotes": 312,
"bookmarks": 4021,
"views": 1284500,
"source": "Twitter Web App",
"conversation_id": "1808168603721650364",
"media": null,
"is_retweet": false,
"retweeted_tweet": null,
"quoted": null,
"reply_to": null,
"in_reply_to_screen_name": null,
"in_reply_to_status_id": null,
"in_reply_to_user_id": null,
"sensitive": false
},
"response_time": 870,
"credits_used": 1,
"credits_remaining": 4819
}