## tiktok/user-followers

`GET /v1/tiktok/user-followers`

An account's followers with per-user follower counts. Paged by min_time cursor.

*Followers*

| Parameter | Required | Description |
| --- | --- | --- |
| `handle` | yes | TikTok username without the @ (or pass user_id). — e.g. `stoolpresidente` |
| `user_id` | no | Numeric user id — alternative to handle. |
| `cursor` | no | min_time value from the previous page. |
| `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:** 1 credit 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/tiktok/user-followers?handle=stoolpresidente" \
  -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
{
  "cursor": null,
  "dropped": 0,
  "items": [
    {
      "avatar_url": "https://example.com/example",
      "bio": "example",
      "followers": 0,
      "following": 0,
      "handle": "example",
      "id": "example",
      "language": "example",
      "name": "example",
      "platform": "example",
      "region": "example"
    }
  ]
}
```

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