← Entertainment

Radio Search

GET /radio/search

Search across 45,000+ internet radio stations worldwide by station name, country, or genre tag. Returns stream URLs, station names, bitrate, codec, country, and genre tags. Data from the community-driven Radio Browser API. Useful for building internet radio apps, discovering local stations abroad, and creating genre-specific streaming playlists.

Parameters

name optional

Station name

country optional

Country

tag optional

Genre tag

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/radio/search?name=jazz&country=Norway"
Jazz stations in Norway
curl "https://nordapi.ee/api/v1/radio/search?name=jazz&country=Norway"
Rock stations worldwide
curl "https://nordapi.ee/api/v1/radio/search?tag=rock"
Classical music stations in Germany
curl "https://nordapi.ee/api/v1/radio/search?tag=classical&country=Germany"

Live Response

{
  "count": 1,
  "data": [
    {
      "bitrate": 192,
      "codec": "MP3",
      "country": "Norway",
      "country_code": "NO",
      "favicon": "https://i.imgur.com/vHp1XjT.png",
      "homepage": "https://radio.nrk.no/direkte/jazz",
      "id": "be930f76-8b01-4d51-9863-4b5a8c64897a",
      "language": "norwegian",
      "name": "1-NRK Jazz",
      "tags": [
        "jazz",
        "smooth jazz"
      ],
      "url": "http://cdn0-47115-liveicecast0.dna.contentdelivery.net/jazz_mp3_h",
      "votes": 318
    }
  ],
  "success": true
}