Skip to main content
GET
/
tracks
/
{id}
/
check-license
Check license status for a track
curl --request GET \
  --url https://open.beatpass.ca/api/v1/tracks/{id}/check-license \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "has_license": true,
  "license_details": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

Track ID

Example:

1

Response

License status retrieved

status
string
Example:

"success"

has_license
boolean
Example:

true

license_details
object
Last modified on November 29, 2025