# SocialFetch TikTok Hashtag Video Search

> SocialFetch TikTok Hashtag Video Search is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Search TikTok for videos associated with a specific hashtag, with optional pagination and region targeting.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/tiktok/search/hashtags
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-tiktok-hashtag-video-search-ac28e118
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h30KHj5PdtLouuJpvchMV

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 socialfetch-tiktok-hashtag-video-search-ac28e118
```

Example prompt: Pull TikTok videos for the hashtag #BookTok — use the compact response format and start from the beginning (no cursor).

## When to prefer this

Use this endpoint when you need TikTok videos filtered by a specific hashtag. For free-text keyword search across TikTok video titles or descriptions, use tiktok.search.videos.list instead. Prefer this when you know the exact hashtag community you want to explore (e.g. #fyp, #BookTok, #fitness).

## Known failure modes

- Invalid or empty hashtag returns an error
- Expired or invalid pagination cursor causes failure
- Unsupported region code may produce unexpected results
- Rate limiting or upstream TikTok API unavailability causes 5xx errors
- Payment not completed (x402) results in 402 response blocking the call

## How this service works

Search TikTok videos by hashtag (not free-text keyword — use tiktok.search.videos.list for that).

## Output

A list of TikTok videos associated with the specified hashtag, including video metadata. If trim is true, a smaller subset of fields is returned. When more pages exist, a pagination cursor is included to fetch subsequent results.

## 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",
     "required": [
      "hashtag",
      "trim"
     ],
     "properties": {
      "trim": {
       "type": "boolean",
       "description": "Whether to request a smaller response with fewer fields."
      },
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Pagination cursor returned by a previous response."
      },
      "region": {
       "type": "string",
       "description": "Optional ISO 3166-1 country code for the request. This sets the proxy region and does not filter results to that country only."
      },
      "hashtag": {
       "type": "string",
       "maxLength": 256,
       "minLength": 1,
       "description": "Hashtag to search for. A leading # is optional."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-tiktok-hashtag-video-search-ac28e118/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
