Zum Inhalt springen
GET /v1/meta

Spec

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/deezer-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}