/v1/meta
Spec
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/audiodb-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/audiodb-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/audiodb-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/audiodb-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"service": "audiodb-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/album": "Album detail by id.",
"GET /v1/artist": "Artist detail by id (e.g. 111239).",
"GET /v1/trending": "Trending tracks (country=, type=itunes|spotify, format=singles|albums).",
"GET /v1/album/tracks": "An album's track list (album id).",
"GET /v1/artist/albums": "An artist's albums (artist id).",
"GET /v1/artist/videos": "An artist's music videos (artist id).",
"GET /v1/search/artists": "Search artists by name."
},
"description": "TheAudioDB music encyclopedia: search artists; artist detail with biography, genre, style, images and socials; an artist's albums and music videos; album detail and tracks; and trending tracks. Real data, no key."
},
"meta": {
"timestamp": "2026-06-08T01:20:07.199Z",
"request_id": "117e25bb-9b3b-426e-bcec-897e4ee0e31c"
},
"status": "ok",
"message": "Meta",
"success": true
}