Deezer
Music catalog — tracks, albums, artists and previews
Deezer's public API returns track, album and artist metadata with 30-second preview URLs. Search and object-lookup routes need no key; OAuth is only for user playlists. CORS is closed, so call it server-side. Great for music-discovery UIs.
GET https://api.deezer.com/search?q=eminem&limit=1
{
"data": [
{
"id": 916424,
"readable": true,
"title": "Without Me",
"title_short": "Without Me",
"title_version": "",
"isrc": "USIR10211038",
"link": "https://www.deezer.com/track/916424",
"duration": 290
}
],
"total": 209,
"next": "https://api.deezer.com/search?q=eminem&limit=1&index=1"
}curl "https://api.deezer.com/search?q=eminem&limit=1"const res = await fetch("https://api.deezer.com/search?q=eminem&limit=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.deezer.com/search?q=eminem&limit=1")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/search?q=eminem&limit=1PROBEDMusic catalog — tracks, albums, artists and previews
/search?limit=5Search by query parameters.
/search?page=1Search by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Deezer: common questions
Is Deezer free to use?
Yes — Deezer is a free media API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Deezer need an API key?
No — Deezer needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Deezer from the browser?
Not directly — Deezer doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Deezer up right now?
As of our last scheduled check, Deezer is healthy with 100% uptime over 90 days and a 232 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.