Skip to main content
GET
/
artist
/
{id}
Get Artist
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/artist/{id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Artist retrieved successfully",
  "artist": {
    "id": "2fca1b81-2f97-4b02-92a2-899d17c756b8",
    "artistName": "Young Blud",
    "signDate": "2022-01-21T00:00:00.000Z",
    "label": "Mavins Records",
    "externalId": "1rema45"
  }
}
artist/ Description:
The /artist/{id} endpoint retrieves detailed information about a specific artist identified by their unique ID.
Method:
GET
Path Parameter:
ParameterTypeDescription
idstringThe unique identifier of the artist.

Authentication

This endpoint requires authentication. Include your bearer token in the Authorization header.

Path Parameters

ParameterTypeInRequiredDescription
idstringpathArtist ID

Responses

✅ 200 - Success

⚠️ 401 - Unauthorized

⚠️ 404 - Not Found

❌ 500 - Internal Server Error

Tags

Artist

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Path Parameters

id
string
required

Artist ID

Response

Success

message
string
artist
object
I