# StableSocial TikTok Keyword Search

> StableSocial TikTok Keyword Search is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Search TikTok posts by keyword with filtering by region, sort order, and date range, returning paginated video results.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/tiktok/search/keyword
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-tiktok-keyword-search-518c2a01
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1DbD1pf3KvD7gnjYpuOcw

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 stablesocial-tiktok-keyword-search-518c2a01 -d '<json body>'
```

Example prompt: Search TikTok for videos about 'sustainable fashion', sorted by most-liked, posted in the last month — show me the top results.

## When to prefer this

Use this endpoint when you need keyword-based TikTok video search without setting up OAuth or a subscription — ideal for ad-hoc brand monitoring, trend research, or content analysis pipelines that pay per query. Prefer this over official TikTok APIs when you need no-auth access, flexible regional proxy routing, or sorting by engagement metrics.

## Known failure modes

- Empty results if keyword has no matching TikTok content
- Invalid cursor value causes pagination error
- Unsupported region code may fall back to default proxy location
- Rate limiting or payment failure returns 402 error
- Keyword too short or empty triggers validation error

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

Returns a paginated list of TikTok videos matching the keyword, including video metadata (views, likes, captions, author info, etc.) and a cursor value for fetching subsequent pages. When trim is true, response is a condensed subset of fields.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "trim": {
   "type": "boolean",
   "description": "Set to true to get a trimmed response"
  },
  "query": {
   "type": "string",
   "minLength": 1,
   "description": "Keyword to search for"
  },
  "cursor": {
   "type": "number",
   "description": "Cursor to get more videos. Get 'cursor' from previous response."
  },
  "region": {
   "type": "string",
   "description": "Note, this doesn't filter the tiktoks only in a specfic region, it puts the proxy there. Use it in case you want to scrape posts only available for some country"
  },
  "sort_by": {
   "enum": [
    "relevance",
    "most-liked",
    "date-posted"
   ],
   "type": "string",
   "description": "Sort by"
  },
  "date_posted": {
   "enum": [
    "yesterday",
    "this-week",
    "this-month",
    "last-3-months",
    "last-6-months",
    "all-time"
   ],
   "type": "string",
   "description": "Time Frame"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-tiktok-keyword-search-518c2a01/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
