POST/v1/data/twitter/tweet

Twitter Tweet Detail

Get detailed data for a single tweet by ID including full engagement metrics, media, author info, and embedded URLs.

Target Latency

1.2s - 4.5s

Credits

1 cr/req

Parameters

NameTypeRequirementDescription
tweet_idstringREQUIREDTweet ID (numeric string).

cURL Example

curl -X POST "https://api.datablue.dev/v1/data/twitter/tweet" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "tweet_id": "1907654321098765432"
}'

System Responses

200 OK

Request processed successfully.

401 UNAUTHORIZED

Missing or invalid API key.

429 RATE LIMIT

System capacity exceeded.

500 SYSTEM FAILURE

Internal core exception.

EXAMPLE RESPONSE
{
  "success": true,
  "time_taken": 1.65,
  "tweet": {
    "id": "1907654321098765432",
    "text": "Specific knowledge is found by pursuing your genuine curiosity rather than whatever is hot right now.",
    "created_at": "2026-04-02T14:30:00Z",
    "likes": 24000,
    "retweets": 4800,
    "replies": 320,
    "quotes": 180,
    "views": 1200000,
    "lang": "en",
    "url": "https://x.com/naval/status/1907654321098765432",
    "author": {
      "username": "naval",
      "name": "Naval",
      "verified": true,
      "profile_image_url": "https://pbs.twimg.com/profile_images/naval_400x400.jpg"
    },
    "media": [],
    "hashtags": [],
    "urls": []
  }
}