# StableSocial TikTok Hashtag Search

> StableSocial TikTok Hashtag 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 for videos associated with a given hashtag, with optional region proxy and pagination support.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/tiktok/search/hashtag
- 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-hashtag-search-3be9f9ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D6C_wcsCUVe9D4R7B7Car

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-hashtag-search-3be9f9ea -d '<json body>'
```

Example prompt: Search TikTok for videos using the hashtag 'veganrecipes' and show me the top results — set the region proxy to US and trim the response to keep things concise.

## When to prefer this

Use this endpoint when you need pay-per-request, no-subscription access to TikTok hashtag search data without managing OAuth or API credentials. Ideal for one-off research tasks, agent pipelines that query social data infrequently, or when you want to avoid costly subscription tiers. Prefer this over scraping libraries when you need a managed, hosted solution with region proxy support and simple per-call pricing.

## Known failure modes

- Invalid or empty hashtag returns a validation error
- Unsupported or malformed region code may result in proxy errors or fallback behavior
- Expired or invalid cursor causes pagination to fail or restart
- Payment failure (non-402-compliant client) blocks access entirely
- Rate limits or TikTok-side blocking may return empty results or errors for high-volume requests

## 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 list of TikTok video objects matching the given hashtag, including video metadata (author, description, stats, URLs), along with a pagination cursor for fetching additional results. If trim is enabled, the response is condensed to essential fields.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "trim": {
   "type": "boolean",
   "description": "Set to true to get a trimmed response"
  },
  "cursor": {
   "type": "number",
   "description": "Cursor to get more videos. Get 'cursor' from previous response."
  },
  "region": {
   "type": "string",
   "description": "Region the proxy will be set to. Note: this isn't going to grab you all tiktoks from this region, you're just setting the proxy there."
  },
  "hashtag": {
   "type": "string",
   "minLength": 1,
   "description": "Hashtag to search for (without #)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-tiktok-hashtag-search-3be9f9ea/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)
