# TikTok Keyword Search

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

Search TikTok for videos and content matching a keyword, with paginated results and cost-free continuation pages

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/tiktok/search/keyword
- 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-keyword-search-60e8825b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KbwziBChCHpD8AZExUczX

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-keyword-search-60e8825b
```

Example prompt: Search TikTok for recent videos about 'AI productivity tools', sorted by relevance, and give me the first page of results — I want to see what's trending on the topic right now.

## When to prefer this

Use this endpoint when you need to search TikTok by keyword and retrieve video results programmatically — especially when paginating through many results cost-efficiently using parentRequestId. Prefer this over general web scraping for TikTok-specific content discovery, trend monitoring, or brand mention tracking.

## Known failure modes

- Invalid or missing query parameter returns an error
- Invalid cursor value causes a pagination failure
- Unsupported region code returns an error or empty results
- Rate limiting or TikTok-side blocks may return empty result sets
- Changing filter parameters mid-pagination starts a new billable request instead of continuing

## How this service works

Search by Keyword 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

A list of TikTok video results matching the keyword, including video metadata, creator info, engagement stats, and a cursor for fetching subsequent pages. Pagination continuation calls using the same query parameters and parentRequestId are billed at $0.

## 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": "string",
       "description": "Set to true for a trimmed response"
      },
      "query": {
       "type": "string",
       "description": "Keyword to search for"
      },
      "cursor": {
       "type": "string",
       "description": "Cursor to get more results For later cursor pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
      },
      "region": {
       "type": "string",
       "description": "Region for proxy"
      },
      "sort_by": {
       "type": "string",
       "description": "Sort by"
      },
      "date_posted": {
       "type": "string",
       "description": "Time frame filter"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tiktok-keyword-search-60e8825b/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)
