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://creatorcrawl.com/api/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://creatorcrawl.com/api/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://creatorcrawl.com/api/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

Add one line to your
MCP config. Ship today.

250 free credits. No card. Works with Claude, Cursor, Windsurf, Zed, and any MCP client.