/v1/artist/top
Artist top tracks
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/deezer-api/v1/artist/top" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/deezer-api/v1/artist/top", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/deezer-api/v1/artist/top");
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/artist/top",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 10,
"tracks": [
{
"id": 66609426,
"link": "https://www.deezer.com/track/66609426",
"rank": 954234,
"album": {
"id": 6516139,
"cover": "https://cdn-images.dzcdn.net/images/cover/bc49adb87758e0c8c4e508a9c5cce85d/1000x1000-000000-80-0-0.jpg",
"title": "Get Lucky (Radio Edit - feat. Pharrell Williams and Nile Rodgers)"
},
"title": "Get Lucky (Radio Edit - feat. Pharrell Williams and Nile Rodgers)",
"artist": {
"id": 27,
"name": "Daft Punk"
},
"preview": "https://cdnt-preview.dzcdn.net/api/1/1/1/b/f/0/1bf80a82992903ff685ba1b7275223f8.mp3?hdnea=exp=1780851828~acl=/api/1/1/1/b/f/0/1bf80a82992903ff685ba1b7275223f8.mp3*~data=user_id=0,application_id=42~hmac=0764e6afe805f57fff539ee8ac0a1491bb5d6fca43acf669df15e832b84d9653",
"explicit": false,
"duration_s": 248,
"title_short": "Get Lucky"
},
{
"id": 3135553,
"link": "https://www.deezer.com/track/3135553",
"rank": 895695,
"album": {
"id": 302127,
"cover": "https://cdn-images.dzcdn.net/images/cover/5718f7c81c27e0b2417e2a4c45224f8a/1000x1000-000000-80-0-0.jpg",
"title": "Discovery"
},
"title": "One More Time",
"artist": {
"id": 27,
"name": "Daft Punk"
},
"preview": "https://cdnt-preview.dzcdn.net/api/1/1/f/8/c/0/f8c5dc3837912dba37c9a1ab3170cc3f.mp3?hdnea=exp=1780851828~acl=/api/1/1/f/8/c/0/f8c5dc3837912dba37c9a1ab3170cc3f.mp3*~data=user_id=0,application_id=42~hmac=f1be8af734c24de905782835a71336eb54e79b34bc8fd522f49a358a336fcadf",
"explicit": false,
"duration_s": 320,
"title_short": "One More Time"
},
{
"id": 67238735,
"link": "https://www.deezer.com/track/67238735",
"rank": 877635,
"album": {
"id": 6575789,
"cover": "https://cdn-images.dzcdn.net/images/cover/311bba0fc112d15f72c8b5a65f0456c1/1000x1000-000000-80-0-0.jpg",
"title": "Random Access Memories"
},
"title": "Get Lucky (feat. Pharrell Williams and Nile Rodgers)",
"artist": {
"id": 27,
"name": "Daft Punk"
},
"preview": "https://cdnt-preview.dzcdn.net/api/1/1/c/8/a/0/c8a61130657a2cf58e3ac751e7950617.mp3?hdnea=exp=1780851828~acl=/api/1/1/c/8/a/0/c8a61130657a2cf58e3ac751e7950617.mp3*~data=user_id=0,application_id=42~hmac=68406b40ab88f0514f8fb8cf0
…