Skip to main content
GET
/
radio
/
{type}
/
{id}
Get radio recommendations
curl --request GET \
  --url https://open.beatpass.ca/api/v1/radio/{type}/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "tracks": [
    {
      "id": 123,
      "name": "Hey Hey What Can I Do",
      "release_date": "1982-11-19",
      "image": "https://example.com/image1.jpg",
      "duration": 5645848548,
      "description": "<string>",
      "artists": [
        {
          "id": 123,
          "name": "Led Zeppelin",
          "image_small": "https://example.com/image1.jpg",
          "verified": true
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

type
string
required

Type of radio (artist, track, genre)

Example:

"artist"

id
integer
required

ID of the entity

Example:

1

Response

Radio recommendations

status
string
Example:

"success"

tracks
object[]
Last modified on November 29, 2025