/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}