# TikTok User Search

> TikTok User Search 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).

Searches TikTok users by a text query, returning paginated results with smart continuation billing so only the first page is charged.

## Facts

- Endpoint: POST https://x402.orthogonal.com/fiber/v1/tiktok/search-users
- 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-search-52394994
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mD32G1ycMEmbxm0g5VEWU

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-search-52394994 -d '<json body>'
```

Example prompt: Search TikTok for users related to 'sustainable fashion' and show me the first page of results.

## When to prefer this

Choose this endpoint when you need to discover or enumerate TikTok user accounts by keyword, name, or topic and want cost-efficient pagination where only the first page incurs a charge. It is ideal for influencer discovery, brand research, and audience analysis workflows.

## Known failure modes

- Empty results if the query matches no TikTok users
- Rate limiting or payment failure if USDC funds are insufficient
- Invalid or expired nextPageToken returning an error
- Changing query parameters mid-pagination treated as a new billable request
- Network timeout from TikTok's underlying API

## How this service works

Searches TikTok users by query. 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 list of TikTok user profiles matching the search query, along with a pagination token for fetching subsequent pages. The billing system provides a requestId on the first call; subsequent paginated calls passing parentRequestId are not billed again as long as the core query parameters remain unchanged.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "Search query for TikTok users."
  },
  "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-search-52394994/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)
