Skip to content
GET /v1/album

Album and tracks by id

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/deezer-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/deezer-api/v1/album" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/deezer-api/v1/album", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/deezer-api/v1/album");
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/album",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "album": {
            "id": 6516139,
            "fans": 160861,
            "link": "https://www.deezer.com/album/6516139",
            "cover": "https://cdn-images.dzcdn.net/images/cover/bc49adb87758e0c8c4e508a9c5cce85d/1000x1000-000000-80-0-0.jpg",
            "label": "Columbia",
            "title": "Get Lucky (Radio Edit - feat. Pharrell Williams and Nile Rodgers)",
            "artist": {
                "id": 27,
                "name": "Daft Punk",
                "picture": "https://cdn-images.dzcdn.net/images/artist/638e69b9caaf9f9f3f8826febea7b543/1000x1000-000000-80-0-0.jpg"
            },
            "genres": [
                {
                    "id": 106,
                    "name": "Electro"
                },
                {
                    "id": 110,
                    "name": "Electro Pop/Electro Rock"
                },
                {
                    "id": 111,
                    "name": "Techno/House"
                },
                {
                    "id": 113,
                    "name": "Dance"
                },
                {
                    "id": 132,
                    "name": "Pop"
                },
                {
                    "id": 134,
                    "name": "International Pop"
                },
                {
                    "id": 152,
                    "name": "Rock"
                },
                {
                    "id": 165,
                    "name": "R&B"
                },
                {
                    "id": 168,
                    "name": "Disco"
                },
                {
                    "id": 169,
                    "name": "Soul & Funk"
                }
            ],
            "explicit": false,
            "genre_id": 106,
            "nb_tracks": 1,
            "duration_s": 248,
            "record_type": "single",
            "release_date": "2013-04-19"
        },
        "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=1780851826~acl=/api/1/1/1/b/f/0/1bf80a82992903ff685ba1b7275223f8.mp3*~data=user_id=0,application_id=42~hmac=d42f5c37bba55addbb6b68bffe1a16cf2531490f3b7c47f624305ed3b81e6636",
                "explicit": false,
                "du
…