# TikTok Video Info Scraper

> TikTok Video Info Scraper is a paid API for AI agents from x402.orth.sh, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches metadata, details, and optionally transcript for a given TikTok video URL

## Facts

- Endpoint: GET https://x402.orth.sh/scrapecreators/v2/tiktok/video
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tiktok-video-info-scraper-052042b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7E4WYmgBwgEYH5TsJ4AQJ

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-video-info-scraper-052042b6
```

Example prompt: Can you pull all the details and transcript from this TikTok video: https://www.tiktok.com/@username/video/1234567890? Use the PH region proxy and include the transcript.

## When to prefer this

Use this endpoint when you need structured data from a specific TikTok video — including metadata, engagement stats, creator info, or spoken transcript — and have the direct video URL. Prefer this over generic web scrapers when you specifically need TikTok video data with region-aware proxy support and optional transcript extraction.

## Known failure modes

- Invalid or expired TikTok URL returns an error or empty response
- Region not specified for geo-restricted videos (e.g. Philippine videos) may return no data — fix by setting region to 'PH' or appropriate country code
- Video may be private or deleted, returning an error
- Rate limiting or proxy failure may result in no response
- Transcript unavailable if video has no speech or captions

## How this service works

Video Info

## Output

Returns structured metadata about the TikTok video including title, description, creator details, view/like/comment counts, and optionally a trimmed response or full transcript of the video's spoken content.

## 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": {
      "url": {
       "type": "string",
       "description": "TikTok video URL"
      },
      "trim": {
       "type": "boolean",
       "description": "Set to true to get a trimmed response"
      },
      "region": {
       "type": "string",
       "description": "Region of the proxy. Sometimes you'll need to specify the region if you're not getting a response. Commonly for videos from the Phillipines, in which case you'd use 'PH'. Use 2 letter country codes like US, GB, FR, etc"
      },
      "get_transcript": {
       "type": "boolean",
       "description": "Get transcript of the video"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tiktok-video-info-scraper-052042b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orth.sh](https://www.zero.xyz/host/x402.orth.sh/llms.txt)
