Zum Inhalt springen
GET /v1/tag

Stations for a tag

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/radiobrowser-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/radiobrowser-api/v1/tag" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/radiobrowser-api/v1/tag", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/radiobrowser-api/v1/tag");
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/tag",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "tag": "jazz",
        "count": 10,
        "order": "votes",
        "source": "Radio Browser",
        "stations": [
            {
                "name": "Classic Vinyl HD",
                "tags": [
                    "1930",
                    "1940",
                    "1950",
                    "1960",
                    "beautiful music",
                    "big band",
                    "classic hits",
                    "crooners",
                    "easy",
                    "easy listening",
                    "hd",
                    "jazz",
                    "light orchestral",
                    "lounge",
                    "oldies",
                    "orchestral",
                    "otr",
                    "relaxation",
                    "strings",
                    "swing",
                    "unwind",
                    "walm"
                ],
                "uuid": "d1a54d2e-623e-4970-ab11-35f7b56c5ec3",
                "codec": "MP3",
                "votes": 279847,
                "clicks": 483,
                "online": true,
                "bitrate": 320,
                "country": "The United States Of America",
                "favicon": "https://icecast.walmradio.com:8443/classic.jpg",
                "homepage": "https://walmradio.com/classic",
                "language": "english",
                "stream_url": "https://icecast.walmradio.com:8443/classic",
                "click_trend": 483,
                "country_code": "US"
            },
            {
                "name": "Adroit Jazz Underground",
                "tags": [
                    "avant-garde",
                    "bebop",
                    "big band",
                    "bop",
                    "combos",
                    "contemporary",
                    "contemporary jazz",
                    "cool",
                    "cool jazz",
                    "free jazz",
                    "fusion",
                    "hard bop",
                    "hd",
                    "mainstream",
                    "mainstream jazz",
                    "modern",
                    "modern big band",
                    "post-bop",
                    "straight-ahead",
                    "walm",
                    "west coast"
                ],
                "uuid": "ea8059be-d119-4de3-b27b-0d9bd6aedb17",
                "codec": "MP3",
                "votes": 171453,
                "clicks": 206,
                "online": true,
                "bitrate": 320,
                "country": "The United States Of America",
                "favicon": "https://icecast.walmradio.com:8443/jazz.jpg",
                "homepage": "https://walmradio.com/jazz",
                "language": "english",
                "stream_url": "https://icecast.walmradio.com:8443/jazz",
                "click_trend": 206,
                "country_code": "US"
            },
            {
                "name":
…