Browse the Help Center for platform guides or API & Developers for integration docs.
curl --request GET \
--url https://open.beatpass.ca/api/v1/cover-art/templates \
--header 'Authorization: Bearer <token>'{
"status": "success",
"templates": [
{
"id": 1,
"name": "Modern Template",
"preview_url": "https://example.com/template-preview.jpg"
}
]
}curl --request GET \
--url https://open.beatpass.ca/api/v1/cover-art/templates \
--header 'Authorization: Bearer <token>'{
"status": "success",
"templates": [
{
"id": 1,
"name": "Modern Template",
"preview_url": "https://example.com/template-preview.jpg"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?