Skip to main content
GET
/
genres
List all available genres
curl --request GET \
  --url https://open.beatpass.ca/api/v1/genres \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "pagination": {
    "current_page": 1,
    "from": 1,
    "to": 100,
    "per_page": 25,
    "last_page": 156,
    "total": 264,
    "data": [
      {
        "id": 1,
        "name": "rock"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Response

Response body contains a paginated list of all existing genres in JSON format.

status
string
Example:

"success"

pagination
object
Last modified on November 29, 2025