TikTok API

TikTok Video API

Full detail for a single TikTok video by URL: caption, region and engagement counts (views, likes, comments, shares, saves).

POST/v1/run/tiktok.video
Uptime
98.49%
30d · 397 calls
Requests
399
30d · weekly, last 12 wks
Response
4.6s
median · 30d

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "found": true,
  "data": {
    "id": "7375000000000000000",
    "caption": "Matchday 🔥",
    "region": "US",
    "views": 9400000,
    "likes": 1200000,
    "comments": 18400,
    "shares": 64000,
    "saves": 41200
  }
}
Response interface
interface TiktokVideoResponse {
  data: {
    caption: string;
    comments: number;
    id: string;
    image?: string;
    likes: number;
    region: string;
    saves: number;
    shares: number;
    views: number;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/tiktok.video
curl -X POST https://api.getanyapi.com/v1/run/tiktok.video \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.tiktok.com/@cristiano/video/7375000000000000000"}'
FieldTypeExample value
Request body
idstringTikTok video ID, the numeric run at the end of a video URL. Use it when a listing SKU handed you an id and no URL.
urlstring"https://www.tiktok.com/@cristiano/video/7375000000000000000"Full TikTok video URL.
Response
foundbooleantrue
dataobject
data.idstring"7375000000000000000"
data.captionstring"Matchday 🔥"
data.regionstring"US"
data.viewsnumber9400000
data.likesnumber1200000
data.commentsnumber18400
data.sharesnumber64000
data.savesnumber41200
Price
Price per requestUSD$0.0005
Price /1k reqUSD$0.50

FAQ

About the TikTok Video API

The AnyAPI TikTok Video API returns TikTok video data as normalized JSON from one POST call to /v1/run/tiktok.video. Full detail for a single TikTok video by URL: caption, region and engagement counts (views, likes, comments, shares, saves). AnyAPI routes each request across 3 sources and falls back automatically when one fails. It costs from $0.50 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 98.5% of TikTok video calls through AnyAPI succeeded, with a median response time of 4.6 seconds across 397 measured calls.

It costs from $0.50 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Full detail for a single TikTok video by URL: caption, region and engagement counts (views, likes, comments, shares, saves). The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 98.5% of TikTok video calls through AnyAPI succeeded, with a median response time of 4.6 seconds across 397 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.