Get artist overview
curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/artists/overview \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://spotify-api31.p.rapidapi.com/api/v1/artists/overview"
headers = {"x-rapidapi-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-rapidapi-key': '<api-key>'}};
fetch('https://spotify-api31.p.rapidapi.com/api/v1/artists/overview', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://spotify-api31.p.rapidapi.com/api/v1/artists/overview",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-rapidapi-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://spotify-api31.p.rapidapi.com/api/v1/artists/overview"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-rapidapi-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://spotify-api31.p.rapidapi.com/api/v1/artists/overview")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://spotify-api31.p.rapidapi.com/api/v1/artists/overview")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-rapidapi-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"id": "7vk5e3vY1uw9plTHJAMwjN",
"name": "Alan Walker",
"uri": "spotify:artist:7vk5e3vY1uw9plTHJAMwjN",
"following": false,
"sharingInfo": {
"shareUrl": "https://open.spotify.com/artist/2w9zwq3AktTeYYMuhMjju8?si=8HEMfSflRbqqgKLlG9z_lQ",
"shareId": "8HEMfSflRbqqgKLlG9z_lQ"
},
"verified": true,
"avatar": [
{
"url": "https://i.scdn.co/image/ab6761610000e5eb572a8eae56feae217f618078",
"width": 640,
"height": 640
}
],
"stats": {
"followers": 1085323,
"monthlyListeners": 7804823,
"worldRank": 0,
"topCities": [
{
"city": "Mexico City",
"country": "MX",
"numberOfListeners": 176300,
"region": "CMX"
}
]
},
"profile": {
"name": "INNA",
"verified": true,
"pinnedItem": {
"type": "PLAYLIST",
"comment": "",
"item": {
"uri": "spotify:user:innaofficial:playlist:5fTCpsYWArmhL7001XP9up",
"name": "INNA - Complete Playlist",
"images": {
"items": [
{
"sources": [
{
"url": "https://i.scdn.co/image/ab67706c0000da84cd928ebf038cfb82f9de2b1d",
"width": 640,
"height": 640
}
]
}
]
}
}
},
"biography": {
"text": "With an impressive string of hits, numerous awards under her trendy belt..."
},
"externalLinks": {
"items": [
{
"name": "FACEBOOK",
"url": "https://facebook.com/Inna"
}
]
},
"playlists": {
"totalCount": 8,
"items": [
{
"uri": "spotify:playlist:3ybECzzbi7noSrZKNvesTN",
"name": "INNA | Dance Playlist",
"description": "Dance like there's no tomorrow. 💃🕺",
"owner": {
"name": "INNA"
},
"images": {
"items": [
{
"sources": [
{
"url": "https://i.scdn.co/image/ab67706c0000da84cd928ebf038cfb82f9de2b1d",
"width": 640,
"height": 640
}
]
}
]
}
}
]
}
}
}
}{
"message": "Bad request"
}{
"message": "Invalid API key"
}{
"message": "You are not subscribed to this API, please subscribe before using"
}{
"success": false,
"message": "Internal Server Error",
"status_code": 500,
"cost": 0,
"explain": "Internal Server Error"
}Artists
Get artist overview
Get overview information about a specific artist including profile, stats, and basic information
GET
/
api
/
v1
/
artists
/
overview
Get artist overview
curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/artists/overview \
--header 'x-rapidapi-key: <api-key>'import requests
url = "https://spotify-api31.p.rapidapi.com/api/v1/artists/overview"
headers = {"x-rapidapi-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-rapidapi-key': '<api-key>'}};
fetch('https://spotify-api31.p.rapidapi.com/api/v1/artists/overview', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://spotify-api31.p.rapidapi.com/api/v1/artists/overview",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-rapidapi-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://spotify-api31.p.rapidapi.com/api/v1/artists/overview"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-rapidapi-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://spotify-api31.p.rapidapi.com/api/v1/artists/overview")
.header("x-rapidapi-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://spotify-api31.p.rapidapi.com/api/v1/artists/overview")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-rapidapi-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"id": "7vk5e3vY1uw9plTHJAMwjN",
"name": "Alan Walker",
"uri": "spotify:artist:7vk5e3vY1uw9plTHJAMwjN",
"following": false,
"sharingInfo": {
"shareUrl": "https://open.spotify.com/artist/2w9zwq3AktTeYYMuhMjju8?si=8HEMfSflRbqqgKLlG9z_lQ",
"shareId": "8HEMfSflRbqqgKLlG9z_lQ"
},
"verified": true,
"avatar": [
{
"url": "https://i.scdn.co/image/ab6761610000e5eb572a8eae56feae217f618078",
"width": 640,
"height": 640
}
],
"stats": {
"followers": 1085323,
"monthlyListeners": 7804823,
"worldRank": 0,
"topCities": [
{
"city": "Mexico City",
"country": "MX",
"numberOfListeners": 176300,
"region": "CMX"
}
]
},
"profile": {
"name": "INNA",
"verified": true,
"pinnedItem": {
"type": "PLAYLIST",
"comment": "",
"item": {
"uri": "spotify:user:innaofficial:playlist:5fTCpsYWArmhL7001XP9up",
"name": "INNA - Complete Playlist",
"images": {
"items": [
{
"sources": [
{
"url": "https://i.scdn.co/image/ab67706c0000da84cd928ebf038cfb82f9de2b1d",
"width": 640,
"height": 640
}
]
}
]
}
}
},
"biography": {
"text": "With an impressive string of hits, numerous awards under her trendy belt..."
},
"externalLinks": {
"items": [
{
"name": "FACEBOOK",
"url": "https://facebook.com/Inna"
}
]
},
"playlists": {
"totalCount": 8,
"items": [
{
"uri": "spotify:playlist:3ybECzzbi7noSrZKNvesTN",
"name": "INNA | Dance Playlist",
"description": "Dance like there's no tomorrow. 💃🕺",
"owner": {
"name": "INNA"
},
"images": {
"items": [
{
"sources": [
{
"url": "https://i.scdn.co/image/ab67706c0000da84cd928ebf038cfb82f9de2b1d",
"width": 640,
"height": 640
}
]
}
]
}
}
]
}
}
}
}{
"message": "Bad request"
}{
"message": "Invalid API key"
}{
"message": "You are not subscribed to this API, please subscribe before using"
}{
"success": false,
"message": "Internal Server Error",
"status_code": 500,
"cost": 0,
"explain": "Internal Server Error"
}Authorizations
API Key
Query Parameters
Spotify artist URI to get the overview of
Pattern:
^spotify:artist:[a-zA-Z0-9]+$Example:
"spotify:artist:41MozSoPIsD1dJM0CLPjZF"
Was this page helpful?
⌘I

