Get TikTok Sound Chart
Return the TikTok sound chart for one country, ranked by videos created in the last 24 hours. Pass country for a country chart or WW (the default) for the worldwide chart. Rows carry the sound's own metrics plus the linked song's metadata, and cm_track when the sound could be matched to a Chartmetric track.
Query Parameters
- Type: string Format: date-timedate
Date for the time-slice (YYYY-MM-DD). Required unless
latest=true. - Type: stringcountrymin length:2max length:2
ISO 3166-1 alpha-2 country code (e.g. 'US', 'BR'), or 'WW' for the worldwide chart. Defaults to 'WW'.
- Type: integerlimitmin:1max:100
Maximum entries returned (≤100).
- Type: integeroffsetmin:0max:10000
Number of rows to skip, for paging through the chart (≤10000).
- Type: booleanlatest
If true, use the most recently available date and ignore
date.
Responses
- application/json
Request Example for get/api/charts/tiktok/sounds
curl https://api.chartmetric.com/api/charts/tiktok/sounds \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"obj": {
"length": 1,
"data": [
{
"timestp": "2026-08-11",
"country": "WW",
"rank": 1,
"tiktok_sound_id": "7123456789012345678",
"tiktok_name_of_sound": "original sound - sample_creator",
"tiktok_sound_creator_name": "Sample Creator",
"tiktok_image_url": "https://example.com/sound.jpeg",
"tiktok_play_url": "https://example.com/sound.mp3",
"tiktok_official_link": "https://www.tiktok.com/music/sample-7123456789012345678",
"tiktok_last_24_hours_video_count": 128450,
"tiktok_last_24_hours_video_percentage": 12.4,
"tiktok_last_7_days_video_count": 794300,
"total_video_views": 1843200000,
"song_name": "Sample Song",
"artists": "Sample Artist",
"song_image_url": "https://example.com/cover.jpeg",
"spotify_id": "4cOdK2wGLETKBW3PvgPWqT",
"label_name": "Sample Records",
"cm_track": 987654
}
]
}
}