> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrape.st/llms.txt
> Use this file to discover all available pages before exploring further.

# Retweeters

> List the accounts that reposted a given X post

List the accounts that reposted (retweeted) a given X post. Results are
paginated — pass the returned `nextCursor` to fetch the next page.

<Note>
  Only public reposts are returned. X does not expose reposts from protected
  accounts, and quote posts are not included.
</Note>

## Query Parameters

<ParamField query="id" type="string" required>
  The X post id. `tweetId` is accepted as an alias.
</ParamField>

<ParamField query="count" type="number" default="20">
  Number of users per page (1–50).
</ParamField>

<ParamField query="cursor" type="string">
  Pagination cursor from a previous response's `nextCursor`.
</ParamField>

## Response

<ResponseField name="users" type="array">
  The reposting accounts. Each entry contains `id`, `name`, `screen_name`,
  `description`, `profile_image_url`, `followers_count`, `verified`,
  `is_blue_verified`, and `protected`.
</ResponseField>

<ResponseField name="nextCursor" type="string">
  Cursor for the next page. Omitted when there are no more results.
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X GET "https://scrape.st/x/retweeters?id=1866914653714358400" \
    -H "x-api-key: YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "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"
  }
  ```
</ResponseExample>
