/v1/meta
Spec
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}