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

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

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 November 29, 2025