Yes. The endpoint accepts either a numeric clip ID or a TikTok music URL.
Music and sound metadata lookup
Resolve public TikTok sound metadata for a clip ID or music URL including author, duration, cover, and playback URLs when available.
Get started with a simple API call.
const response = await fetch('https://api.crawlkit.sh/v1/crawl/tiktok/song', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"clipId": "7016547803243027205",
"options": {
"timeout": 30000
}
})
});
const { data } = await response.json();
console.log(data.song.title, data.song.author);Everything you need for reliable tiktok song workflows.
Resolve clipId, title, author, and music URL in one call.
Return duration, cover art, and public play URL fields when TikTok exposes them.
Inspect original/commercial indicators for the sound.
Get started in minutes with our simple API.
Sign up for free and get your API key instantly. No credit card required.
Use our simple REST API with your favorite programming language.
Receive clean JSON responses ready to use in your application.
Get clean, structured JSON data with every request. Our API returns comprehensive data including status codes, timing information, and your remaining credits.
{
"success": true,
"data": {
"song": {
"clipId": "7016547803243027205",
"title": "original sound",
"author": "fitchef",
"album": null,
"duration": 29,
"isOriginal": true,
"isCommercial": false,
"playUrl": "https://sf16-ies-music.tiktokcdn.com/...",
"coverUrl": "https://p16-sign.tiktokcdn.com/...",
"musicUrl": "https://www.tiktok.com/music/original-sound-7016547803243027205"
},
"timing": {
"total": 2134
},
"creditsUsed": 1,
"creditsRemaining": 90
}
}Common applications for TikTok Song.
Normalize TikTok sound IDs before joining with content data.
Track which sounds are driving public content clusters.
Use clip metadata in dashboards, search indices, or content QA.
Everything you need to know about the TikTok Song API.
Yes. The endpoint accepts either a numeric clip ID or a TikTok music URL.
No. Use TikTok Song Videos if you need posts associated with a sound.
TikTok Song uses 1 credit per request.
Get 100 free credits to test the API. No credit card required.