Browse the Help Center for platform guides or API & Developers for integration docs.
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
}
}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
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Artist created successfully
"success"
Was this page helpful?