GET/tiktok/song

Get Song Data

Get detailed metadata for a specific TikTok sound/song. Returns title, artist, duration, usage count, and cover art.

Quick Start

cURL
curl "https://api.creatorcrawl.com/v1/tiktok/song?id=7123456789" \
  -H "x-api-key: YOUR_API_KEY"

Parameters

NameTypeRequiredDescription
idstringRequiredTikTok song/sound ID

Response

JSON Response
{
  "id": "7123456789",
  "title": "original sound",
  "authorName": "Creator Name",
  "duration": 30,
  "usageCount": 1500000
}

Every request costs 1 credit. Response data is live -- never cached.

Use Cases

Sound analytics

Track how a specific sound is performing -- usage count, growth rate, and associated content.

Music marketing

Monitor how songs spread on TikTok for music industry analytics.

Content attribution

Get metadata about sounds used in videos for proper attribution and tracking.

Code Examples

Python
import requests

resp = requests.get(
    "https://api.creatorcrawl.com/v1/tiktok/song",
    params={"id": "7123456789"},
    headers={"x-api-key": "YOUR_API_KEY"},
)
song = resp.json()
print(f"{song['title']} by {song['authorName']} - {song['usageCount']} uses")
JavaScript
const resp = await fetch(
  "https://api.creatorcrawl.com/v1/tiktok/song?id=7123456789",
  { headers: { "x-api-key": "YOUR_API_KEY" } }
)
const song = await resp.json()
console.log(`${song.title} by ${song.authorName} - ${song.usageCount} uses`)

Related Endpoints

Explore More

Takes 60 seconds

Your agents are one config file away from six platforms.

250 free API calls. No card. Add the MCP server to Claude, Cursor, Windsurf, or Zed, or hit the REST API from any language.