Browse the Help Center for platform guides or API & Developers for integration docs.
curl --request POST \
--url https://open.beatpass.ca/api/v1/cover-art/preview \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"template_id": 1,
"title": "My Track",
"artist": "Artist Name"
}
'{
"status": "success",
"preview_url": "https://example.com/preview.jpg"
}curl --request POST \
--url https://open.beatpass.ca/api/v1/cover-art/preview \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"template_id": 1,
"title": "My Track",
"artist": "Artist Name"
}
'{
"status": "success",
"preview_url": "https://example.com/preview.jpg"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?