## x/user-followers

`GET /v1/x/user-followers`

An X account's followers as profile cards — handle, name, bio, location, follower/following/post counts, join date, avatar — up to 200 a page with cursor pagination.

*Followers*

| Parameter | Required | Description |
| --- | --- | --- |
| `handle` | yes | X username without the @. — e.g. `monzo` |
| `limit` | no | Followers per page, 20–200 (default 200). Smaller pages cost the upstream MORE per follower, not less. — e.g. `200` |
| `cursor` | no | Opaque cursor from the previous page's cursor field. |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 3 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/x/user-followers?handle=monzo" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "count": 0,
  "cursor": null,
  "dropped": 0,
  "handle": "example",
  "has_more": false,
  "items": [
    {
      "avatar_url": "https://example.com/example",
      "bio": "example",
      "created_at": "2026-09-01T12:00:00Z",
      "followers": 0,
      "following": 0,
      "handle": "example",
      "id": "example",
      "likes_count": 0,
      "location": "example",
      "name": "example",
      "platform": "example",
      "protected": false,
      "tweets_count": 0,
      "url": "https://example.com/example",
      "verified_legacy": false
    }
  ],
  "page_size": 0,
  "platform": "example"
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/x/user-followers#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/x/user-followers.json)
