Skip to main content
GET
/
x
/
tweet
curl -X GET "https://scrape.st/x/tweet?id=1886493083207827456" \
  -H "x-api-key: YOUR_API_KEY"
{
  "id": "1886493083207827456",
  "text": "Bitcoin hits new all-time high! 🚀 $BTC",
  "created_at": "2024-04-02T15:30:00.000Z",
  "lang": "en",
  "favorite_count": 15000,
  "retweet_count": 3000,
  "reply_count": 800,
  "quote_count": 400,
  "bookmark_count": 1200,
  "author": {
    "id": "44196397",
    "name": "Elon Musk",
    "screen_name": "elonmusk",
    "profile_image_url": "https://pbs.twimg.com/profile_images/xxx/photo.jpg",
    "verified": true,
    "is_blue_verified": true
  },
  "link": "https://x.com/elonmusk/status/1886493083207827456"
}
Retrieve detailed information for a specific X post.

Query Parameters

id
string
required
X post ID

Response

id
string
Post’s unique ID
text
string
Post content
author
object
Author profile details
curl -X GET "https://scrape.st/x/tweet?id=1886493083207827456" \
  -H "x-api-key: YOUR_API_KEY"
{
  "id": "1886493083207827456",
  "text": "Bitcoin hits new all-time high! 🚀 $BTC",
  "created_at": "2024-04-02T15:30:00.000Z",
  "lang": "en",
  "favorite_count": 15000,
  "retweet_count": 3000,
  "reply_count": 800,
  "quote_count": 400,
  "bookmark_count": 1200,
  "author": {
    "id": "44196397",
    "name": "Elon Musk",
    "screen_name": "elonmusk",
    "profile_image_url": "https://pbs.twimg.com/profile_images/xxx/photo.jpg",
    "verified": true,
    "is_blue_verified": true
  },
  "link": "https://x.com/elonmusk/status/1886493083207827456"
}