Get Track Metadata by ID

Fetch a single Chartmetric track with full metadata: artists, albums, tags/genres, moods, activities, release info, and aggregated cm_statistics spanning Spotify, YouTube, TikTok, Shazam, Pandora, Genius, and Boomplay counters. Response may contain additional undocumented fields that can change over time.

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

    Chartmetric track ID.

Responses
  • application/json
Request Example for get/api/track/{id}
curl https://api.chartmetric.com/api/track/0 \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "obj": {
    "id": 15678739,
    "name": "Angels",
    "local_name": null,
    "local_name_locale": null,
    "isrc": "USRC11700153",
    "image_url": "https://i.scdn.co/image/5026fddc6c0b69e931ae99130f15d4214f1e7d41",
    "preview_url": null,
    "duration_ms": 170680,
    "composer_name": "N/A",
    "track_tier": null,
    "artists": [
      {
        "id": 209693,
        "name": "Khalid",
        "image_url": "https://i.scdn.co/image/ab6761610000e5eb012b37d6dec8872b18524f78",
        "code2": "US"
      }
    ],
    "albums": [
      {
        "id": 13133047,
        "name": "American Teen",
        "upc": "886446326146",
        "release_date": "2017-03-03T08:00:00.000Z",
        "label": "Right Hand Music Group, LLC/RCA Records",
        "image_url": "https://is5-ssl.mzstatic.com/image/thumb/Music124/v4/5b/54/f9/5b54f992-e3b3-4809-fcc4-21a9faf484da/886446326146.jpg/160x160bb.jpeg",
        "popularity": null
      }
    ],
    "tags": "Music,R&B/Soul",
    "moods": null,
    "activities": null,
    "genres": null,
    "songwriters": null,
    "cm_songwriters": null,
    "release_date": "2017-03-03T00:00:00.000Z",
    "album_label": "Right Hand Music Group, LLC/RCA Records",
    "explicit": false,
    "score": null,
    "cm_statistics": {
      "cm_track": 15678739,
      "sp_popularity": 61,
      "num_tt_videos": 954,
      "sp_streams": "107823509",
      "genius_page_views": 297466,
      "youtube_views": "6800747"
    }
  }
}