Skip to main content
GET
/
tracks
Get list of tracks
curl --request GET \
  --url https://open.beatpass.ca/api/v1/tracks \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "tracks": {
    "current_page": 1,
    "from": 1,
    "to": 100,
    "per_page": 25,
    "last_page": 156,
    "total": 264,
    "data": [
      {
        "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.

Query Parameters

page
integer

Page number

Example:

1

per_page
integer

Items per page

Example:

25

query
string

Search query

Example:

"rock music"

Response

List of tracks

status
string
Example:

"success"

tracks
object
Last modified on November 29, 2025