/v1/search/artists
Search artists
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/deezer-api/v1/search/artists" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/deezer-api/v1/search/artists", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/deezer-api/v1/search/artists");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/deezer-api/v1/search/artists",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 25,
"query": "the weeknd",
"total": 73,
"artists": [
{
"id": 4050205,
"link": "https://www.deezer.com/artist/4050205",
"name": "The Weeknd",
"radio": true,
"nb_fans": 14491968,
"picture": "https://cdn-images.dzcdn.net/images/artist/581693b4724a7fcfa754455101e13a44/1000x1000-000000-80-0-0.jpg",
"nb_albums": 86
},
{
"id": 315582831,
"link": "https://www.deezer.com/artist/315582831",
"name": "The Weeknd",
"radio": true,
"nb_fans": 18,
"picture": "https://cdn-images.dzcdn.net/images/artist/d41d8cd98f00b204e9800998ecf8427e/1000x1000-000000-80-0-0.jpg",
"nb_albums": 0
},
{
"id": 188197757,
"link": "https://www.deezer.com/artist/188197757",
"name": "The Retro Weeknd",
"radio": true,
"nb_fans": 63,
"picture": "https://cdn-images.dzcdn.net/images/artist/d8cfeb4333d11f466dab301f2e09bd6b/1000x1000-000000-80-0-0.jpg",
"nb_albums": 5
},
{
"id": 341712231,
"link": "https://www.deezer.com/artist/341712231",
"name": "The Masked Weeknd",
"radio": true,
"nb_fans": 0,
"picture": "https://cdn-images.dzcdn.net/images/artist//1000x1000-000000-80-0-0.jpg",
"nb_albums": 0
},
{
"id": 215452485,
"link": "https://www.deezer.com/artist/215452485",
"name": "Too Close To The Weeknd",
"radio": true,
"nb_fans": 8,
"picture": "https://cdn-images.dzcdn.net/images/artist/2846582a0c7b7dda028b17cc8d05acb5/1000x1000-000000-80-0-0.jpg",
"nb_albums": 2
},
{
"id": 11005292,
"link": "https://www.deezer.com/artist/11005292",
"name": "Weeknd",
"radio": true,
"nb_fans": 2100,
"picture": "https://cdn-images.dzcdn.net/images/artist/85896d64d434f9954149ab42affb9bcd/1000x1000-000000-80-0-0.jpg",
"nb_albums": 3
},
{
"id": 172957827,
"link": "https://www.deezer.com/artist/172957827",
"name": "Infinite Weeknd",
"radio": true,
"nb_fans": 0,
"picture": "https://cdn-images.dzcdn.net/images/artist/1d33e1aec9c17e567192d25b4d099aae/1000x1000-000000-80-0-0.jpg",
"nb_albums": 30
},
{
"id": 288173461,
"link": "https://www.deezer.com/artist/288173461",
"name"
…