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

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

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