curl -X GET "https://scrape.st/x/retweeters?id=1866914653714358400" \
-H "x-api-key: YOUR_API_KEY"
{
"users": [
{
"id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"description": "",
"profile_image_url": "https://pbs.twimg.com/profile_images/....jpg",
"followers_count": 200000000,
"verified": false,
"is_blue_verified": true,
"protected": false
}
],
"nextCursor": "-1|1866914653714358400"
}
X Queries
Retweeters
List the accounts that reposted a given X post
GET
/
x
/
retweeters
curl -X GET "https://scrape.st/x/retweeters?id=1866914653714358400" \
-H "x-api-key: YOUR_API_KEY"
{
"users": [
{
"id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"description": "",
"profile_image_url": "https://pbs.twimg.com/profile_images/....jpg",
"followers_count": 200000000,
"verified": false,
"is_blue_verified": true,
"protected": false
}
],
"nextCursor": "-1|1866914653714358400"
}
List the accounts that reposted (retweeted) a given X post. Results are
paginated — pass the returned
nextCursor to fetch the next page.
Only public reposts are returned. X does not expose reposts from protected
accounts, and quote posts are not included.
Query Parameters
string
required
The X post id.
tweetId is accepted as an alias.number
default:"20"
Number of users per page (1–50).
string
Pagination cursor from a previous response’s
nextCursor.Response
array
The reposting accounts. Each entry contains
id, name, screen_name,
description, profile_image_url, followers_count, verified,
is_blue_verified, and protected.string
Cursor for the next page. Omitted when there are no more results.
curl -X GET "https://scrape.st/x/retweeters?id=1866914653714358400" \
-H "x-api-key: YOUR_API_KEY"
{
"users": [
{
"id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"description": "",
"profile_image_url": "https://pbs.twimg.com/profile_images/....jpg",
"followers_count": 200000000,
"verified": false,
"is_blue_verified": true,
"protected": false
}
],
"nextCursor": "-1|1866914653714358400"
}