Data
Deezer track search with previews API
Search tracks via the Deezer public API (keyless), returning flat records with artist, album, duration (seconds and m:ss), popularity rank, explicit flag, a 30-second preview URL, and cover art. Complements MusicBrainz with audio previews and popularity. Answers 'find a song called X','get a preview clip for this track','how popular is this track','what album is this song on'.
Price$0.01per request
MethodPOST
Route/v1/data/music-deezer-track-search
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
musictrackdeezerpreviewsearchpopularitycover-artaudio
API URL
Integration docshttps://x402.hexl.dev/v1/data/music-deezer-track-searchExample request
{
"query": "Daft Punk Harder Better Faster Stronger",
"limit": 5
}Example response
{
"query": "Daft Punk Harder Better Faster Stronger",
"total": 1,
"count": 1,
"tracks": [
{
"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": [
"query"
],
"properties": {
"query": {
"type": "string",
"examples": [
"Daft Punk Harder Better",
"Rihanna Umbrella"
]
},
"limit": {
"type": "number",
"default": 15,
"examples": [
15
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}