GET
/tiktok/songGet 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
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Required | TikTok 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`)