Get audio details from TikTok with KonbiniAPI
Returns metadata for a TikTok audio track including title, artist, duration, usage count, and cover image. Look up any sound by its audio ID.
This API endpoint returns metadata for a TikTok audio track including title, artist, duration, usage count, and cover image. Look up any sound by its audio ID.
Perfect for
- Viral sound trend identification and tracking
- Music campaign performance measurement and attribution
- Sound licensing research and content attribution workflows
1. Make the request
const response = await fetch("https://api.konbiniapi.com/v1/tiktok/audios/2222", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
2. Get clean JSON
Response (200 OK)
{
"data": {
"@context": [
"https://www.w3.org/ns/activitystreams#",
"https://konbiniapi.com/ns/social#"
],
"type": "Audio",
"id": "https://www.tiktok.com/music/original-sound-7611615657754381599",
"url": "https://sf16-ies-music.tiktokcdn.com/obj/tos-alisg-v/123456",
"name": "original sound",
"duration": 23,
"mediaType": "audio/mpeg",
"attributedTo": {
"type": "Person",
"id": "https://www.tiktok.com/@khaby.lame",
"url": "https://www.tiktok.com/@khaby.lame",
"entityId": "MS4wLjABAAAAwAg0rSzO65WQfz4RzQgGv2Xdv108BgPXhRrrmNVIHQZ9PO8-flwwRtEppYTS0OjA",
"name": "Khabane Lame",
"preferredUsername": "khaby.lame",
"summary": "Just a guy who reacts",
"attachment": [
{
"type": "Link",
"href": "https://linktr.ee/khaby.lame",
"rel": "preferred"
}
],
"published": "2020-03-15T00:00:00.000Z",
"isPrivate": false,
"isVerified": true,
"isLive": false,
"hasLikes": true,
"hasPlaylists": true,
"followerCount": 160300000,
"followingCount": 85,
"language": "en",
"likeCount": 2600000000,
"likedCount": 5300,
"mediaCount": 1309,
"icon": {
"type": "Image",
"url": "https://p16-sign.tiktokcdn-us.com/tos-maliva-avt-0068/avatar.jpeg",
"width": 576,
"height": 1024
},
"image": [
{
"type": "Image",
"url": "https://p16-sign.tiktokcdn-us.com/tos-maliva-avt-0068/avatar.jpeg",
"width": 576,
"height": 1024
}
]
},
"icon": {
"type": "Image",
"url": "https://p16-sign.tiktokcdn-us.com/tos-maliva-avt-0068/avatar.jpeg",
"width": 576,
"height": 1024
},
"image": [
{
"type": "Image",
"url": "https://p16-sign.tiktokcdn-us.com/tos-maliva-avt-0068/avatar.jpeg",
"width": 576,
"height": 1024
}
],
"entityId": "7493556331997071377",
"album": "Greatest Hits",
"isOriginal": false,
"isCopyrighted": false,
"videoCount": 500000
}
}