# Fetch artist details Returns detailed information about a specific artist available in the Audicin catalogue. This endpoint is typically used to display artist profile pages, artist credits, or contextual information linked from songs. Endpoint: GET /tenants/artists/{artistId} Version: 1.0.0 Security: api-key ## Path parameters: - `artistId` (string, required) ## Response 200 fields (application/json): - `id` (string) Artist ULID - `firstName` (string) First name - `lastName` (string) Last name - `description` (string) Artist bio/description - `avatar` (object) Media asset (audio, image) metadata and URL - `avatar.id` (string) Media ULID - `avatar.required` (boolean) Whether this media is required - `avatar.multiple` (boolean) Whether multiple files are allowed - `avatar.url` (string) Public or presigned URL to access the media - `avatar.allowedType` (string) Allowed MIME type category Enum: "IMAGES", "FILES", "VIDEOS", "AUDIOS" ## Response 400 fields (application/json): - `errorCode` (string) - `error` (string) e.g. Validation Failed - `title` (string) e.g. Invalid Parameter - `message` (string) - `details` (string,null) - `validationErrors` (object) ## Response 402 fields (application/json): - `errorCode` (string) - `title` (string) - `message` (string) - `ref` (string,null) - `validationErrors` (object) ## Response 404 fields (application/json): - `errorCode` (string) - `title` (string) - `message` (string) - `ref` (string,null) - `validationErrors` (object) ## Response 500 fields (application/json): - `errorCode` (string) - `title` (string) - `message` (string) - `ref` (string,null) - `validationErrors` (object)