Data
Deezer artist top tracks API
Fetch an artist's most popular tracks by numeric Deezer ID via the Deezer public API (keyless), returning ranked tracks with album, duration (seconds and m:ss), explicit flag, preview URL, and cover art. Answers 'what are the top songs by artist X','most popular Deezer tracks for this artist','give me preview clips of an artist's hits','rank this artist's songs by popularity'.
Price$0.01per request
MethodPOST
Route/v1/data/music-deezer-artist-top
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
musicartistdeezertop-trackspopularitypreviewhitsranking
API URL
Integration docshttps://x402.hexl.dev/v1/data/music-deezer-artist-topExample request
{
"id": 27,
"limit": 5
}Example response
{
"artistId": "27",
"count": 2,
"artist": "Daft Punk",
"topTracks": [
{
"id": 3135556,
"title": "Harder, Better, Faster, Stronger",
"artist": "Daft Punk",
"artistId": 27,
"album": "Discovery",
"albumId": 302127,
"durationSeconds": 224,
"duration": "3:44",
"rank": 800000,
"explicit": false,
"trackPosition": null,
"previewUrl": "https://cdns-preview.deezer.com/stream/x.mp3",
"coverUrl": "https://e-cdns-images.dzcdn.net/images/cover/x/250x250-000000.jpg",
"url": "https://www.deezer.com/track/3135556"
}
]
}Input schema
{
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": [
"number",
"string"
],
"examples": [
27
]
},
"limit": {
"type": "number",
"default": 15,
"examples": [
15
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}