/v1/search
Find stations
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/radiobrowser-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/radiobrowser-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/radiobrowser-api/v1/search");
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/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 10,
"order": "clickcount",
"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": "101 SMOOTH JAZZ",
"tags": [
"easy listening",
"jazz",
"smooth jazz"
],
"uuid": "d28420a4-eccf-47a2-ace1-088c7e7cb7e0",
"codec": "MP3",
"votes": 85983,
"clicks": 345,
"online": true,
"bitrate": 128,
"country": "The United States Of America",
"favicon": "http://101smoothjazz.com/favicon.ico",
"homepage": "http://101smoothjazz.com/",
"language": "english",
"stream_url": "http://jking.cdnstream1.com/b22139_128mp3",
"click_trend": 345,
"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",
…