πŸ’Ž Premium β€” List Popular TikTok Sounds for a Track

​

The TikTok sounds carrying the track's audio that have been active recently, one row each -- the Top Sounds table on the track's TikTok page. A track usually has many: one official sound plus the user uploads that spread separately, each with its own video count and reach. This is not every sound we hold: a sound is returned when we have video stats for it inside the seven-day trend window and it is not a de-duplicated entry, so dormant sounds drop out -- on the track behind the example our cache holds 436 and 134 come back, the same set the app's own table renders. Rows come back ordered by views, highest first, and video_trend carries a daily video count reaching seven days back so a caller can tell a sound that is still spreading from one that has stalled.

Path Parameters
  • id
    Type: integer
    min: Β 
    0
    max: Β 
    2147483647
    required

    Chartmetric track ID.

Query Parameters
  • official
    Type: boolean

    Restrict to sounds TikTok marks official when true, to the rest when false. Omit for both.

Responses
  • application/json
Request Example for get/api/track/{id}/tiktok-top-sounds
curl https://api.chartmetric.com/api/track/1/tiktok-top-sounds \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "obj": [
    {
      "tiktok": 25646255,
      "tiktok_track_id": "x-7559312683885201425",
      "name": "Choosin' Texas",
      "creator_name": "Ella Langley",
      "views": 989416726,
      "posts": 356929,
      "first_post_date": null,
      "upload_date": "2025-10-20",
      "is_official": true,
      "is_original": false,
      "still_on_tiktok": true,
      "thumbnail_url": "https://p16-common.tiktokcdn-us.com/tos-alisg-v-2774/oIBRCwt8oFHAAtWAIoED2efkIAaSgHxDBQimJZ~tplv-tiktokx-cropcenter:720:720.jpeg",
      "video_trend": [
        {
          "date": "2026-08-24",
          "videos": 349649
        },
        {
          "date": "2026-08-25",
          "videos": 350792
        }
      ]
    }
  ]
}