# TikTok User Following List

> TikTok User Following List 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 TikTok accounts that a given user follows

## Facts

- Endpoint: POST https://x402.orthogonal.com/fiber/v1/tiktok/user-following
- 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-following-list-4a2b9622
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VxyWL7H0lcJ8pG6xDlnwk

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-following-list-4a2b9622 -d '<json body>'
```

Example prompt: Can you pull the full list of accounts that TikTok user @charlidamelio is following?

## When to prefer this

Use this endpoint when you need to enumerate the accounts a specific TikTok user follows, especially for social graph analysis, influencer research, or competitor monitoring. The pagination billing model (free continuation pages) makes it cost-efficient for users with large following lists. Prefer this over general social media scraping tools when the target platform is specifically TikTok and you need the following relationship rather than follower data.

## Known failure modes

- Invalid or non-existent TikTok handle returns an error or empty result
- TikTok account is private, preventing following list retrieval
- Pagination token is expired or invalid, requiring a fresh first-page call
- Rate limiting or quota exhaustion from the underlying TikTok data source
- Changing non-pagination parameters while passing parentRequestId starts a new billable request instead of continuing

## How this service works

Fetches paginated list of accounts a TikTok user follows. 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 accounts the specified user follows, including profile data for each followed account (e.g. handles, display names). Each response includes a nextPageToken for continuation and billing metadata including a requestId that can be used as parentRequestId for zero-cost pagination continuation 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-following-list-4a2b9622/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)
