Get Curator Fan Metrics
Time-series fan metrics for a curator from a given source (one of spotify, facebook, twitter, youtube_channel, instagram, tiktok). Pass field to request a single metric (e.g. followers, likes), or omit it for source defaults: spotify → followers; facebook → followers, likes, talks; twitter → followers; youtube_channel → subscribers, views, videos; instagram → followers; tiktok → followers, likes.
- Type: string enumplatformrequired
Streaming platform of the curator. Allowed:
spotify,itunes,applemusic,deezer(itunesandapplemusicreturn the same data).values- spotify
- itunes
- applemusic
- deezer
- Type: integeridmin:0max:2147483647required
Chartmetric curator ID.
- Type: string enumsourcerequired
Social/streaming source for the metric. One of
spotify,facebook,twitter,youtube_channel,instagram,tiktok. Pair withfieldto request a single metric.values- spotify
- facebook
- twitter
- youtube
_channel - instagram
- tiktok
- Type: string Format: date-timesince
Lower bound of the date range in ISO format (e.g. '2024-03-05'). Defaults to 20 days ago. Ignored when
latest=true. - Type: string Format: date-timeuntil
Upper bound of the date range in ISO format (e.g. '2024-03-25'). Defaults to today. Ignored when
latest=true. - Type: stringfield
Specific stat to return from
source(e.g.followers,likes). See the operation description for valid(source, field)combinations. If omitted, returns the source defaults. - Type: booleanlatest
If true, return only the most recent data point and ignore
since/until. Defaults to false. - Type: booleaninterpolated
If true, linearly interpolate between adjacent known data points to fill missing days. Each returned point carries an
interpolatedboolean. Defaults to false.
- application/json
curl https://api.chartmetric.com/api/curator/spotify/0/stat/spotify \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"obj": {
"followers": [
{
"weekly_diff": null,
"weekly_diff_percent": null,
"monthly_diff": null,
"monthly_diff_percent": null,
"value": 462391,
"timestp": "2022-02-06T00:00:00.000Z",
"flags": false,
"diff": null
},
{
"weekly_diff": null,
"weekly_diff_percent": null,
"monthly_diff": null,
"monthly_diff_percent": null,
"value": 464773,
"timestp": "2022-02-16T00:00:00.000Z",
"flags": false,
"diff": 2382
}
]
}
}