# TikTok Trending Feed

> TikTok Trending Feed 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 the current TikTok trending feed, with paginated access to trending videos and content

## Facts

- Endpoint: POST https://x402.orthogonal.com/fiber/v1/tiktok/trending-feed
- 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-trending-feed-d7ae3f50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ESJBHEEIwXOeo2fhwRGc9

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-trending-feed-d7ae3f50 -d '<json body>'
```

Example prompt: What's trending on TikTok right now? Pull the current trending feed and show me the top videos.

## When to prefer this

Use this endpoint when you need programmatic, paginated access to TikTok's trending feed without managing TikTok authentication directly. Ideal for trend monitoring, content research, or competitive analysis workflows. The pagination billing model makes it cost-efficient for multi-page crawls since only the first page of a session is billed.

## Known failure modes

- Invalid or expired nextPageToken returns an error or resets pagination
- TikTok API unavailability causes request failure
- Changing non-pagination parameters mid-session starts a new billable request instead of continuing
- Rate limiting or quota exhaustion may block further requests
- Missing required authentication or payment headers returns 402

## How this service works

Fetches the TikTok trending feed. 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 trending TikTok videos including metadata such as video titles, creators, engagement metrics, and a pagination token (nextPageToken) for fetching subsequent pages of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "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-trending-feed-d7ae3f50/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)
