TwitterAPIs Docs
API ReferenceTweet Details

Tweet 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. Cost: $0.0008 per call.

GET
/tweet/detail

Authorization

bearerAuth
AuthorizationBearer <token>

Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.

In: header

Query Parameters

tweet_id*string

Numeric ID of the tweet to fetch.

Response Body

application/json

curl -X GET "https://example.com/tweet/detail?tweet_id=1759123456789012345"
{  "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"}