Aller au contenu
GET /v1/meta

Spec

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/radiobrowser-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}