# TikTok User Followers

Fetch TikTok follower lists as structured JSON for audience research, influencer discovery, creator vetting, and social graph analysis. Use a username or numeric user ID to inspect who follows a public TikTok account, page through follower data, and enrich creator intelligence workflows.

- **Documentation:** [https://scrappa.co/docs/tiktok/tiktok_user_followers](https://scrappa.co/docs/tiktok/tiktok_user_followers)
- **API group:** TikTok API
- **Endpoint:** `GET https://scrappa.co/api/tiktok/user/followers`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `unique_id` | string | No | TikTok username, with or without @. |
| `user_id` | string | No | Numeric TikTok user ID. |
| `count` | integer | No | Number of followers to return, from 1 to 50. |
| `time` | integer | No | Follower pagination token/time marker. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/tiktok/user/followers?user_id=107955&count=50&time=0"
```

## Example response

```json
{
    "code": 0,
    "msg": "success",
    "data": []
}
```

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
