Get Chartmetric Score
Chartmetric Score reflects the overall trend for tracks or albums, computed from weighted chart-rank positions across countries over time. Supported byType values are artist, track, album depending on chartType. Supported chartType values are spotify-top, spotify-viral, applemusic-genre, applemusic-daily, applemusic-albums, itunes, itunes_albums, shazam. Response carries two parallel views of the score timeline: overall (aggregate) and individual (per-track/per-album).
- Type: string enumby
Type requiredEntity kind that
:idrefers to (one ofartist | track | album); must match the chosenchartType.values- artist
- track
- album
- Type: string enumchart
Type requiredChart whose Chartmetric Score is computed. One of
spotify-top,spotify-viral,applemusic-genre,applemusic-daily,applemusic-albums,itunes,itunes_albums,shazam.values- spotify
-top - spotify
-viral - applemusic
-genre - applemusic
-daily - applemusic
-albums - itunes
- itunes
_albums - shazam
- Type: integeridmin:0max:2147483647required
Chartmetric ID for the entity in
:byType(artist / track / album ID).
- Type: string Format: datesince
Start of the score time range (ISO date, e.g.
2025-11-01); defaults to 180 days ago. - Type: string Format: dateuntil
End of the score time range (ISO date, e.g.
2025-11-01); defaults to today.
- application/json
curl https://api.chartmetric.com/api/charts/artist/0/spotify-top/cm-score \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"obj": {
"overall": [
{
"x": "2020-07-01",
"y": 0.39,
"count": 1,
"details": [
{
"trackName": "Woke Up Late (feat. Hailee Steinfeld)",
"trackId": 22310714,
"details": [
{
"rank": 180,
"country": "AU",
"score": 0.39
}
]
}
]
}
],
"individual": [
{
"id": 22310714,
"name": "Woke Up Late (feat. Hailee Steinfeld)",
"data": [
{
"timestp": "2020-07-01T00:00:00.000Z",
"score": 0.39,
"rank_details": [
{
"rank": 180,
"country": "AU",
"score": 0.39
}
]
}
]
}
]
}
}