Skip to main content
PATCH
/
artists
/
{artistId}
Update an artist
curl --request PATCH \
  --url https://api.blurb.fm/v1/artists/{artistId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "My Artist",
  "imageUrl": "https://placehold.co/1000x1000",
  "externalIds": {
    "appleMusic": "1234567890",
    "spotify": "1234567890",
    "youtube": "1234567890"
  },
  "clientRef": "1234567890"
}
'
{
  "success": true,
  "message": "Artist updated",
  "data": {
    "orgId": "example",
    "createdAt": {
      "seconds": 3,
      "nanoseconds": 3
    },
    "updatedAt": {
      "seconds": 3,
      "nanoseconds": 3
    },
    "artistId": "example",
    "name": "example",
    "imageAssetId": null,
    "externalIds": {
      "appleMusic": null,
      "spotify": null,
      "youtube": null
    },
    "clientRef": null
  }
}

Path Parameters

artistId
string
required
Example:

"my-artist-id"

Body

application/json

The request to update an artist.

name
string

The name of the artist.

Example:

"My Artist"

imageUrl
string

Optional URL of the artist's image. This will appear as artist art.

Example:

"https://placehold.co/1000x1000"

externalIds
object
clientRef
string
default:""

The client reference for the artist

Example:

"1234567890"

Response

Artist updated successfully

success
boolean
required

Whether the request was successful

Example:

true

message
string | null
required

Message from the API

Example:

"Artist updated"

data
object
required

The response from the Artist PATCH request.

Example:
{
"orgId": "example",
"createdAt": { "seconds": 3, "nanoseconds": 3 },
"updatedAt": { "seconds": 3, "nanoseconds": 3 },
"artistId": "example",
"name": "example",
"imageAssetId": null,
"externalIds": {
"appleMusic": null,
"spotify": null,
"youtube": null
},
"clientRef": null
}