Browse the Help Center for platform guides or API & Developers for integration docs.
curl --request POST \
--url https://open.beatpass.ca/api/v1/artists \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "New Artist",
"description": "A talented musician",
"image_small": "https://example.com/artist-small.jpg"
}
'{
"status": "success",
"artist": {
"id": 123,
"name": "Led Zeppelin",
"image_small": "https://example.com/image1.jpg",
"verified": true
}
}curl --request POST \
--url https://open.beatpass.ca/api/v1/artists \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "New Artist",
"description": "A talented musician",
"image_small": "https://example.com/artist-small.jpg"
}
'{
"status": "success",
"artist": {
"id": 123,
"name": "Led Zeppelin",
"image_small": "https://example.com/image1.jpg",
"verified": true
}
}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.
Was this page helpful?