/v1/meta
Spec
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/deezer-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/deezer-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/deezer-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"service": "deezer-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/album": "Album and its tracks by id.",
"GET /v1/chart": "Top tracks, albums, artists, playlists.",
"GET /v1/track": "Track by id.",
"GET /v1/artist": "Artist by id.",
"GET /v1/genres": "Music genres.",
"GET /v1/search": "Search tracks.",
"GET /v1/playlist": "Playlist and its tracks by id.",
"GET /v1/artist/top": "An artist's top tracks.",
"GET /v1/artist/albums": "An artist's albums.",
"GET /v1/search/albums": "Search albums.",
"GET /v1/search/artists": "Search artists.",
"GET /v1/search/playlists": "Search playlists."
},
"description": "Deezer data: tracks, albums, artists, playlists, search, charts and genres — real live data."
},
"meta": {
"timestamp": "2026-06-07T16:48:50.980Z",
"request_id": "8552ab1e-f51e-4045-9983-34f0d3d7586d"
},
"status": "ok",
"message": "Meta",
"success": true
}