# TikTok User Videos Fetcher

> TikTok User Videos Fetcher 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 paginated videos posted by a specific TikTok user, with efficient billing for multi-page requests.

## Facts

- Endpoint: POST https://x402.orthogonal.com/fiber/v1/tiktok/user-videos
- 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-videos-fetcher-91b2068f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fOvjGxX_hY6iAdp3qbvfg

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-videos-fetcher-91b2068f -d '<json body>'
```

Example prompt: Pull all the videos from TikTok user @charlidamelio — start from the first page and keep fetching until you have their last 50 posts.

## When to prefer this

Choose this endpoint when you need to retrieve videos from a specific TikTok user's profile in a paginated, cost-efficient manner. It is especially useful for multi-page fetches since continuation pages are free when using the parentRequestId pattern. Prefer this over generic scraping when you specifically need TikTok user video feeds.

## Known failure modes

- Invalid or non-existent TikTok handle returns an error or empty result
- TikTok rate limiting or account privacy settings may block video retrieval
- Changing filters or handle while passing parentRequestId starts a new billable request
- Expired or invalid nextPageToken may result in pagination failure
- Private TikTok accounts may return no videos

## How this service works

Fetches paginated videos from 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 videos from the specified TikTok user's profile, including video metadata such as titles, URLs, engagement data, and a nextPageToken for fetching subsequent pages. Also includes a billing requestId to use as parentRequestId for cost-free 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-videos-fetcher-91b2068f/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)
