TikTok API

TikTok Song videos API

List TikTok videos that use a given song or sound (with descriptions, authors, and engagement stats).

POST/v1/run/tiktok.song_videos
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": {
    "hasMore": 42,
    "nextCursor": "example",
    "videos": [
      {
        "authorHandle": "alex_rivera",
        "authorName": "Alex Rivera",
        "commentCount": 12500,
        "createTime": 42,
        "description": "A short example description of this item.",
        "likeCount": 12500,
        "playCount": 12500,
        "shareCount": 13,
        "videoId": "a1b2c3d4"
      }
    ]
  },
  "found": true
}
Response interface
interface TiktokSongVideosResponse {
  data: {
    hasMore: number;
    nextCursor: string | null;
    videos: {
      authorHandle: string;
      authorName: string;
      commentCount: number;
      createTime: number;
      description: string;
      likeCount: number;
      playCount: number;
      shareCount: number;
      videoId: string;
    }[];
  } | 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_videos
curl -X POST https://api.getanyapi.com/v1/run/tiktok.song_videos \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"clipId":"7439295283975702544"}'
FieldTypeExample value
Request body
clipIdstring"7439295283975702544"The song ID found in TikTok music URLs (e.g. 7439295283975702544).
cursorstringPagination cursor for retrieving the next page of results.
Response
dataobject
data.hasMoreinteger
data.nextCursorstringOpaque cursor for the next page of videos, or null when this lane has no more. Pass it back as cursor to continue.
data.videosobject[]Populated whenever the provider has data for the entity.
data.videos[].authorHandlestringPopulated whenever the provider has data for the entity.
data.videos[].authorNamestringPopulated whenever the provider has data for the entity.
data.videos[].commentCountinteger
data.videos[].createTimeinteger
data.videos[].descriptionstring
data.videos[].likeCountinteger
data.videos[].playCountinteger
data.videos[].shareCountinteger
data.videos[].videoIdstringPopulated whenever the provider has data for the entity.
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the TikTok Song videos API

The AnyAPI TikTok Song videos API returns TikTok song videos data as normalized JSON from one POST call to /v1/run/tiktok.song_videos. List TikTok videos that use a given song or sound (with descriptions, authors, and engagement stats). 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.

List TikTok videos that use a given song or sound (with descriptions, authors, and engagement stats). 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.