curl --request GET \
--url https://api.recoupable.com/api/spotify/artist/ \
--header 'x-api-key: <api-key>'{
"artist": {
"external_urls": {
"spotify": "<string>"
},
"followers": {
"href": "<string>",
"total": 123
},
"genres": [
"<string>"
],
"href": "<string>",
"id": "<string>",
"images": [
{
"url": "<string>",
"height": 123,
"width": 123
}
],
"name": "<string>",
"popularity": 123,
"type": "artist",
"uri": "<string>"
},
"error": {}
}Get Spotify catalog information for a single artist identified by their unique Spotify ID.
curl --request GET \
--url https://api.recoupable.com/api/spotify/artist/ \
--header 'x-api-key: <api-key>'{
"artist": {
"external_urls": {
"spotify": "<string>"
},
"followers": {
"href": "<string>",
"total": 123
},
"genres": [
"<string>"
],
"href": "<string>",
"id": "<string>",
"images": [
{
"url": "<string>",
"height": 123,
"width": 123
}
],
"name": "<string>",
"popularity": 123,
"type": "artist",
"uri": "<string>"
},
"error": {}
}Your Recoup API key. Learn more.
The Spotify ID of the artist
Was this page helpful?