# TikTok Trending Feed

> TikTok Trending Feed is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Fetches the current trending feed from TikTok, optionally filtered by region and with trimmed response support.

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/tiktok/get-trending-feed
- Price: $0.02/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-97137fc5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3RBpDMJ8p0JGQk6ryH-zQ

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-97137fc5
```

Example prompt: What's trending on TikTok right now in the US? Pull the full trending feed so I can see what's going viral.

## When to prefer this

Use this endpoint when you need real-time TikTok trending feed data without managing your own TikTok scraper infrastructure. It is ideal for monitoring viral content, powering trend dashboards, or informing content strategy. Prefer this over manual scraping or unofficial libraries when you need a reliable, pay-per-call solution with region selection support.

## Known failure modes

- Invalid or unsupported region code returns empty or default feed
- TikTok API rate limiting or blocking causes failed scrape
- Trending feed may reflect a cached or slightly delayed snapshot
- trim parameter misuse may return unexpected response shape
- Service outage on TikTok's end causes empty or error response

## How this service works

Trending Feed

## Output

A list of currently trending TikTok videos and associated metadata (video details, creator info, engagement stats, etc.), optionally trimmed to a smaller payload, reflecting what is trending in the specified region at the time of the call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "trim": {
       "type": "boolean",
       "description": "Set to true to get a trimmed response."
      },
      "region": {
       "type": "string",
       "description": "Where you want the proxy to be. This doesn't mean that you will only see TikToks from this region, you will just see the content that isn't banned in that region."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tiktok-trending-feed-97137fc5/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)
