/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/radiobrowser-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/radiobrowser-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/radiobrowser-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/radiobrowser-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"source": "Radio Browser public API (live)",
"service": "radiobrowser-api",
"endpoints": {
"GET /v1/tag": "Stations for a genre/theme tag (tag=jazz, order, limit).",
"GET /v1/top": "Trending stations (by=vote|click, limit).",
"GET /v1/meta": "This document.",
"GET /v1/stats": "Directory totals: stations, tags, languages, countries, clicks last hour/day.",
"GET /v1/search": "Find stations (name=, tag=, country=, countrycode=, language=, order=, limit)."
},
"description": "Live access to the world's largest community-curated directory of internet radio stations (~58,000) from the open Radio Browser API: search stations by name, tag, country or language with stream URL, homepage, codec, bitrate, tags and vote/click counts; the trending stations (most-voted or most-clicked right now); the stations for a genre/theme tag; and the directory's live totals (stations, tags, languages, countries, clicks last hour/day). Live, no key, nothing stored. Distinct from on-demand music APIs — this is the live, community-voted directory of radio streams.",
"upstream_status": "ok",
"stations_indexed": 57971
},
"meta": {
"timestamp": "2026-06-09T20:24:54.290Z",
"request_id": "961bbd97-c3af-4a55-8b63-a85f57d5b7d8"
},
"status": "ok",
"message": "Meta",
"success": true
}