Browse the Help Center for platform guides or API & Developers for integration docs.
curl --request POST \
--url https://open.beatpass.ca/api/v1/playlists \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "My playlist",
"description": "<string>",
"image": "<string>",
"public": false,
"collaborative": false
}
'{
"status": "success",
"playlist": {
"id": 123,
"name": "Some Playlist",
"public": true,
"collaborative": false,
"image": "https://example.com/image1.jpg",
"description": "<string>"
}
}curl --request POST \
--url https://open.beatpass.ca/api/v1/playlists \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "My playlist",
"description": "<string>",
"image": "<string>",
"public": false,
"collaborative": false
}
'{
"status": "success",
"playlist": {
"id": 123,
"name": "Some Playlist",
"public": true,
"collaborative": false,
"image": "https://example.com/image1.jpg",
"description": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.beatpass.ca/llms.txt
Use this file to discover all available pages before exploring further.
API access is invite-only. Contact contact@beatpass.ca to request access. Once approved, generate tokens from Account Settings → Developers. Include as: Authorization: Bearer {token}. Tokens expire after 90 days.
"My playlist"
Short description (between 20 and 170 chracaters) for playlist
Image url for playlist
Whether this playlist will be set as public
Whether this playlist will be set as collaborative
Was this page helpful?