Skip to main content
GET
/
artists
/
{artistId}
Get an artist by ID
curl --request GET \
  --url https://api.blurb.fm/v1/artists/{artistId}
{
  "success": true,
  "message": "Artist found",
  "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"

Response

Artist fetched successfully

success
boolean
required

Whether the request was successful

Example:

true

message
string | null
required

Message from the API

Example:

"Artist found"

data
object
required

The response from the Artist GET 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
}