Get artist
/public/v1/artist/{uid}.jsonX-API-Key requiredReturns the latest snapshot for an upgraded artist: Spotify popularity, followers, monthly listeners, overall rank, and cross-platform social counts.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| uid | path | string | Yes | Spotify artist ID. |
| lookback | query | integer | No | Days of daily history to include in history (1–365). Omit for latest snapshot only. |
Example request
GET /public/v1/artist/4gzpq5DPGxSnKTe4SA8HAU.json?lookback=7
X-API-Key: msx_live_...Example response
{
"uid": "4gzpq5DPGxSnKTe4SA8HAU",
"popularity": 98,
"followers": 98123456,
"monthlyListeners": 84200000,
"overallRank": 3,
"instagramFollowers": 281000000,
"asOf": "2026-07-04",
"history": [
{
"date": "2026-06-28",
"popularity": 97,
"followers": 97800000
}
]
}