Get Multiple Artists
Developing
GET
/artists
category-artists
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.spotify.com/v1/artists?ids=' \
--header 'Authorization;'
Response Response Example
200 - Example 1
{
"artists": [
{
"external_urls": {
"spotify": "string"
},
"followers": {
"href": "string",
"total": 0
},
"genres": [
"string"
],
"href": "string",
"id": "string",
"images": [
{
"height": 0,
"url": "string",
"width": 0
}
],
"name": "string",
"popularity": 0,
"type": "string",
"uri": "string"
}
]
}
Request
Query Params
ids
string
required
Header Params
Authorization
string
required
Responses
Modified at 2022-09-12 10:04:50