curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/artists/concerts \
--header 'x-rapidapi-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"items": [
{
"title": "Lady Gaga",
"uri": "spotify:concert:1X87ZdtrR3mjpy6tl0Cpe0",
"startDateIsoString": "2026-01-21T19:00+09:00",
"artists": [
{
"name": "Lady Gaga"
}
]
}
],
"nearby": {
"locationName": "Hanoi",
"concerts": [
{
"title": "Lady Gaga",
"uri": "spotify:concert:1X87ZdtrR3mjpy6tl0Cpe0",
"startDateIsoString": "2026-01-21T19:00+09:00",
"artists": [
{
"name": "Lady Gaga"
}
]
}
]
}
}
}Get upcoming concerts for the specified artist
curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/artists/concerts \
--header 'x-rapidapi-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"items": [
{
"title": "Lady Gaga",
"uri": "spotify:concert:1X87ZdtrR3mjpy6tl0Cpe0",
"startDateIsoString": "2026-01-21T19:00+09:00",
"artists": [
{
"name": "Lady Gaga"
}
]
}
],
"nearby": {
"locationName": "Hanoi",
"concerts": [
{
"title": "Lady Gaga",
"uri": "spotify:concert:1X87ZdtrR3mjpy6tl0Cpe0",
"startDateIsoString": "2026-01-21T19:00+09:00",
"artists": [
{
"name": "Lady Gaga"
}
]
}
]
}
}
}API Key
Spotify artist URI to get artist concerts
^spotify:artist:[a-zA-Z0-9]+$"spotify:artist:1HY2Jd0NmPuamShAr6KMms"
Was this page helpful?