Skip to main content
GET
https://scrape.st
/
x
/
tweet
curl -X GET "https://scrape.st/x/tweet?tweetId=2019606922824151397" \
  -H "x-api-key: YOUR_API_KEY"
{
  "rest_id": "1758925562145892556",
  "core": {
    "user_results": {
      "result": {
        // User details
      }
    }
  },
  "legacy": {
    "full_text": "This is likely a very interesting tweet.",
    "created_at": "Sat Feb 17 12:00:00 +0000 2024",
    "favorite_count": 12345,
    "retweet_count": 678,
    "reply_count": 90
  }
  // ... full object
}
Retrieve full data for a specific Tweet directly from the scraper.
This endpoint supports dual authentication: - Admin Access: Use x-admin-key for unlimited access. - Standard Access: Use x-api-key (subject to rate limits).
x-admin-key
string
The administrative API key configured in the deployment environment (ADMIN_API_KEY).
x-api-key
string
Your standard API key. Requests using this key are limited to 2 requests per minute.
tweetId
string
required
The unique numeric ID of the Tweet to fetch.
data
object
The raw tweet object as returned by Twitter’s GraphQL API.
{
  "rest_id": "1758925562145892556",
  "core": {
    "user_results": {
      "result": {
        // User details
      }
    }
  },
  "legacy": {
    "full_text": "This is likely a very interesting tweet.",
    "created_at": "Sat Feb 17 12:00:00 +0000 2024",
    "favorite_count": 12345,
    "retweet_count": 678,
    "reply_count": 90
  }
  // ... full object
}
curl -X GET "https://scrape.st/x/tweet?tweetId=2019606922824151397" \
  -H "x-api-key: YOUR_API_KEY"