Skip to main content
POST
/
cover-art
/
preview
Generate cover art preview
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"
}

Authorizations

Authorization
string
header
required

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.

Body

application/json
template_id
integer
Example:

1

title
string
Example:

"My Track"

artist
string
Example:

"Artist Name"

Response

Cover art preview generated

status
string
Example:

"success"

preview_url
string
Example:

"https://example.com/preview.jpg"

Last modified on March 20, 2026