# TikTok User Followers

> TikTok User Followers is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches the list of followers for a given TikTok user by handle or user ID, with pagination support

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/tiktok/user/followers
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tiktok-user-followers-53b59f1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t4q535W8SrI6aNXIc7abT

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability tiktok-user-followers-53b59f1d
```

Example prompt: Can you pull the followers list for the TikTok account with handle @charlidamelio? Use their user ID if you have it for a faster response, and trim the results.

## When to prefer this

Use this endpoint when you need to scrape TikTok follower lists without direct TikTok API access or when you lack TikTok developer credentials. Prefer user_id over handle for faster response times. Best for influencer research, audience analysis, and social graph mapping on TikTok specifically. Not suitable for Twitter/X, Instagram, or other platforms — use sibling endpoints for those.

## Known failure modes

- Invalid or non-existent TikTok handle returns an error or empty result
- TikTok rate limiting or scraping blocks may cause failures or partial data
- Missing both handle and user_id results in a validation error
- Expired or invalid min_time pagination cursor may return unexpected results
- Private TikTok accounts may not return follower data

## How this service works

Followers

## Output

Returns a list of TikTok follower profiles for the specified user, including follower metadata. Also provides a min_time pagination cursor to retrieve subsequent pages of followers. When trim=true, returns a condensed version of the response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "trim": {
       "type": "boolean",
       "description": "Set to true to get a trimmed response"
      },
      "handle": {
       "type": "string",
       "description": "TikTok handle"
      },
      "user_id": {
       "type": "string",
       "description": "User id. Use this for faster response times."
      },
      "min_time": {
       "type": "number",
       "description": "Used to paginate. Get 'min_time' from previous response."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tiktok-user-followers-53b59f1d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
