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.
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"}User Search GET
Search the user directory by keyword. Matches against display name, handle, and bio. Useful for discovery, lead lists, and resolving partial handles into full profiles. Cost: $0.0008 per call.
Tweet Replies GET
Fetch the direct replies to a given tweet, cursor-paginated. Combine with Tweet Detail to reconstruct a discussion or measure reply sentiment. Cost: $0.0008 per call.