/v1/chart
Top charts
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/chart" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/deezer-api/v1/chart", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/deezer-api/v1/chart");
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/chart",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"albums": [
{
"id": 945481241,
"link": "https://www.deezer.com/album/945481241",
"cover": "https://cdn-images.dzcdn.net/images/cover/18d2169cc814aef101da81172ca7b9b4/1000x1000-000000-80-0-0.jpg",
"title": "Folge 239: Das Geheimnis der sieben Palmen",
"artist": {
"id": 71513,
"link": "https://www.deezer.com/artist/71513",
"name": "Die drei ???",
"picture": "https://cdn-images.dzcdn.net/images/artist/ac1cd9a5c56dd71464fceca49dbf9853/1000x1000-000000-80-0-0.jpg"
},
"genres": [],
"explicit": false,
"record_type": "album"
},
{
"id": 944183651,
"link": "https://www.deezer.com/album/944183651",
"cover": "https://cdn-images.dzcdn.net/images/cover/db8c6f889c49aaf75c30cef4dbd1e806/1000x1000-000000-80-0-0.jpg",
"title": "Folge 164: Hexerei im Cluburlaub",
"artist": {
"id": 64579,
"link": "https://www.deezer.com/artist/64579",
"name": "Bibi Blocksberg",
"picture": "https://cdn-images.dzcdn.net/images/artist/49612d7767a0a5f4ec2cc7ff45a16d40/1000x1000-000000-80-0-0.jpg"
},
"genres": [],
"explicit": false,
"record_type": "album"
},
{
"id": 996851211,
"link": "https://www.deezer.com/album/996851211",
"cover": "https://cdn-images.dzcdn.net/images/cover/3575f5509e223891d2ff99a916ca9dbf/1000x1000-000000-80-0-0.jpg",
"title": "Folge 78: Gefangen im Computer",
"artist": {
"id": 218515175,
"link": "https://www.deezer.com/artist/218515175",
"name": "Bobby & Max",
"picture": "https://cdn-images.dzcdn.net/images/artist/7fed8541d73579fc34c76753cb0b4d69/1000x1000-000000-80-0-0.jpg"
},
"genres": [],
"explicit": false,
"record_type": "album"
},
{
"id": 996267931,
"link": "https://www.deezer.com/album/996267931",
"cover": "https://cdn-images.dzcdn.net/images/cover/bec9fb296040f23c1852104cc791c48c/1000x1000-000000-80-0-0.jpg",
"title": "Sanctuary",
"artist": {
"id": 98,
"link": "https://www.deezer.com/artist/98",
"name": "Evanescence",
"picture": "https://cdn-images.dzcdn.net/images/artist/0c993f8104879b99b1a952005a8c2426/1000x1000-000000-80-0-0.jpg"
},
"genres": [],
"explicit": true,
"record
…