GET
/tweet/detail$0.0008 / callTweet Detail
Resolve a tweet ID into its complete object, including author, engagement counts, attached media, and any quoted tweet. The starting point for any single-tweet workflow.
Request
curl "https://api.twitterapis.com/tweet/detail?tweet_id=1759123456789012345" \
-H "Authorization: Bearer $TWITTERAPIS_KEY"Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
tweet_id | string | required | Numeric ID of the tweet to fetch. Example: |
Response
| Field | Type | Description |
|---|---|---|
tweet | Tweet | The resolved tweet object. |
status | string | "success" on a normal response. |
Example response
{
"tweet": {
"id": "1759123456789012345",
"text": "Shipping the new docs today.",
"created_at": "Tue Feb 20 14:02:11 +0000 2026",
"author": { "id": "745273", "username": "naval", "name": "Naval" },
"like_count": 4821,
"retweet_count": 612,
"reply_count": 88,
"view_count": 219340
},
"status": "success"
}Pricing for this endpoint
tweet/detail costs $0.0008 per call and returns ~20 tweets, so roughly $0.04 per 1,000 tweets. No subscriptions or minimum spend.