Aller au contenu
GET /v1/search/artists

Search artists

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/deezer-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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"
…