List who follows an X account
xcrap_get_followersFetch the list of accounts following a given X/Twitter handle, with names, bios, and follower counts. Paginate with next_cursor to retrieve more pages.
Instructions
Fetch one page of the accounts following an X/Twitter account, each with its name, handle, bio, follower count and verification.
Use this for "who follows @x", "who does @x follow", or to find the other accounts in someone's circle. X decides the page size (usually a few dozen accounts); pass next_cursor to continue, and stop when it is null.
When to use this instead of the alternatives:
Use xcrap_get_user for one account's own profile and follower count, rather than the list of accounts.
Args:
handle (string, required): "jack", "@jack" or a profile URL.
cursor (string): the next_cursor from a previous call. Omit for the first page. Do not invent one.
format ('markdown' | 'json'): default 'markdown'.
Returns markdown: a heading, then one line per account — name, handle, follower count — with its bio underneath, and a "Next page" cursor line when there is more. Returns json: { handle, relation, count, next_cursor, users[ ] }.
Costs 20 calls/minute. Protected accounts return 404; accounts that opted out of XCrap are left out of the list.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Pagination cursor from a previous call. Omit for the first page; never construct one by hand. | |
| format | No | Output format. 'markdown' (default) is compact, human-readable and costs roughly a tenth of the tokens of the same data as JSON — prefer it for reading and summarising. Use 'json' only when you need exact field access: numeric ids, media URLs, per-metric values, or provenance metadata. | markdown |
| handle | Yes | X handle, @handle or profile URL whose followers to list. |