Skip to main content
POST
/
artists
Create a new artist
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
  }
}

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
name
string
Example:

"New Artist"

description
string
Example:

"A talented musician"

image_small
string
Example:

"https://example.com/artist-small.jpg"

Response

Artist created successfully

status
string
Example:

"success"

artist
object
Last modified on March 20, 2026