TikTok API

TikTok Song API

Fetch details for a TikTok song or sound (title, author, duration, cover art, and how many videos use it).

POST/v1/run/tiktok.song
Requests
-
30d

Provider network

Providers ranked by traffic

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.
{
  "data": {
    "album": "example",
    "author": "Alex Rivera",
    "coverUrl": "https://example.com/page",
    "duration": 13,
    "isOriginal": true,
    "shareUrl": "https://example.com/page",
    "songId": "a1b2c3d4",
    "title": "Example title",
    "videoCount": 12500
  },
  "found": true
}
Response interface
interface TiktokSongResponse {
  data: {
    album: string;
    author: string;
    coverUrl: string;
    duration: number;
    isOriginal: boolean;
    shareUrl: string;
    songId: string;
    title: string;
    videoCount: 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.song
curl -X POST https://api.getanyapi.com/v1/run/tiktok.song \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"clipId":"7439295283975702544"}'
FieldTypeExample value
Request body
clipIdstring"7439295283975702544"The clip identifier for the song, found in TikTok music URLs (e.g. 7439295283975702544).
Response
dataobject
data.albumstringPopulated whenever the provider has data for the entity.
data.authorstringPopulated whenever the provider has data for the entity.
data.coverUrlstringPopulated whenever the provider has data for the entity.
data.durationintegerPopulated whenever the provider has data for the entity.
data.isOriginalboolean
data.shareUrlstringPopulated whenever the provider has data for the entity.
data.songIdstringPopulated whenever the provider has data for the entity.
data.titlestringPopulated whenever the provider has data for the entity.
data.videoCountinteger
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the TikTok Song API

The AnyAPI TikTok Song API returns TikTok song data as normalized JSON from one POST call to /v1/run/tiktok.song. Fetch details for a TikTok song or sound (title, author, duration, cover art, and how many videos use it). AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $1.20 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.

Fetch details for a TikTok song or sound (title, author, duration, cover art, and how many videos use it). 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.