/v1/meta
Spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/spotify-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/spotify-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/spotify-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/spotify-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"service": "spotify-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/album": "Album with its track list.",
"GET /v1/track": "Track by id/uri/url.",
"GET /v1/artist": "Artist with top tracks.",
"GET /v1/oembed": "oEmbed (title, thumbnail, embed html) for any Spotify url.",
"GET /v1/resolve": "Any Spotify link → entity (auto-detect type).",
"GET /v1/playlist": "Playlist with its tracks."
},
"description": "Spotify metadata: track, album (with tracks), artist (with top tracks) and playlist (with tracks) lookups by Spotify id, uri or url, plus a universal resolver and oEmbed — real live data, no login."
},
"meta": {
"timestamp": "2026-06-07T16:47:10.987Z",
"request_id": "39fa83d7-04ef-4412-90d7-111e89cbd21a"
},
"status": "ok",
"message": "Meta",
"success": true
}