Data
Deezer album lookup with track list API
Look up a Deezer album by numeric ID via the Deezer public API (keyless), returning UPC, label, record type, release date, track count, total duration, fan count, genres, contributors, cover art, and the full track list with per-track previews. Answers 'what tracks are on Deezer album X','what is the UPC of this album','how many fans does this album have','get the track list with previews'.
Price$0.01per request
MethodPOST
Route/v1/data/music-deezer-album
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
musicalbumdeezertracklistupcpreviewlabellookup
API URL
Integration docshttps://x402.hexl.dev/v1/data/music-deezer-albumExample request
{
"id": 302127
}Example response
{
"id": 302127,
"title": "Discovery",
"artist": "Daft Punk",
"artistId": 27,
"upc": "724384960650",
"label": "Virgin",
"recordType": "album",
"releaseDate": "2001-03-07",
"trackCount": 14,
"durationSeconds": 3660,
"duration": "61:00",
"fans": 500000,
"explicit": false,
"genres": [
"Electro"
],
"contributors": [
"Daft Punk"
],
"coverUrl": "https://e-cdns-images.dzcdn.net/images/cover/x/250x250-000000.jpg",
"url": "https://www.deezer.com/album/302127",
"tracks": [
{
"id": 3135553,
"title": "One More Time",
"trackPosition": 1,
"durationSeconds": 320,
"duration": "5:20",
"explicit": false,
"previewUrl": "https://cdns-preview.deezer.com/stream/y.mp3"
}
]
}Input schema
{
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": [
"number",
"string"
],
"examples": [
302127
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}