Get Playlist Evolution by Artist, Album, or Track
Daily playlist-count and total-reach time series across six streaming platforms for the given entity (artist, album, or track). iTunes, Amazon, and SoundCloud only expose counts (no reach). Reach numbers can exceed the 32-bit range.
Path Parameters
- Type: integeridrequired
Chartmetric metadata ID for the entity selected by
type(artist, album, or track ID). - Type: string enumtyperequired
Chartmetric metadata type. One of
artist,album, ortrack.values- artist
- track
- album
Query Parameters
- Type: string Format: datesince
Inclusive start of the date range in
YYYY-MM-DDformat. Defaults to 180 days before today. - Type: string Format: dateuntil
Inclusive end of the date range in
YYYY-MM-DDformat. Defaults to today.
Responses
- application/json
Request Example for get/api/playlist/by/{type}/{id}/evolution
curl https://api.chartmetric.com/api/playlist/by/artist/1/evolution \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"obj": {
"spotify": [
{
"created_at": "2018-12-01",
"playlist_count": 1095,
"ed_playlist_count": 8,
"playlist_total_reach": 4296113,
"ed_playlist_total_reach": 3383510
}
],
"amazon": [],
"deezer": [],
"youtube": [],
"itunes": [
{
"created_at": "2018-12-01",
"playlist_count": 15,
"ed_playlist_count": 3
}
],
"soundcloud": []
}
}