# TikTok User Followers Fetcher (Orthogonal x402)

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

Fetches a paginated list of followers for a given TikTok user handle, with cost-efficient pagination billing.

## Facts

- Endpoint: POST https://x402.orthogonal.com/fiber/v1/tiktok/user-followers
- Price: $0.04/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-fetcher-orthogonal-x402-3f1a3adb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4sOEkNAXr41_EH7WF1rXc

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-fetcher-orthogonal-x402-3f1a3adb -d '<json body>'
```

Example prompt: Can you fetch the followers of the TikTok account @charlidamelio and give me the first page of results?

## When to prefer this

Use this endpoint when you need to programmatically retrieve the follower list of a specific TikTok user with support for efficient multi-page traversal. The pagination billing model makes it cost-effective for large follower lists — only the first page is billed at $0.04 USDC, and subsequent pages using the same parentRequestId are free. Prefer this over generic scraping tools when you need structured TikTok follower data with reliable pagination.

## Known failure modes

- Invalid or non-existent TikTok handle returns an error or empty result
- Expired or invalid nextPageToken causes pagination failure
- Changing filter parameters while passing parentRequestId starts a new billable request instead of continuing
- Rate limiting or TikTok-side blocking may return partial or no data
- Missing required 'handle' parameter returns a validation error

## How this service works

Fetches paginated followers of a TikTok user. Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

Returns a paginated list of TikTok followers for the specified handle, including user profile details for each follower and a nextPageToken for fetching subsequent pages. Also returns a billing requestId that can be used as parentRequestId for free continuation page calls.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "handle": {
   "type": "string",
   "description": "TikTok handle."
  },
  "nextPageToken": {
   "type": "string",
   "description": "Pagination token. For continuation billing, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tiktok-user-followers-fetcher-orthogonal-x402-3f1a3adb/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)
