Get Artist Details

API Endpoint

GET /artist/:artistId
Host: api.audicient.com
Authorization: <API_KEY>:<API_SECRET>

Path Parameters

Parameter
Type
Description

artistId

string

The unique ID of the artist

Authentication Requirements

All requests must include authentication credentials.

  • Authorization Header: Pass the API key and secret as <API_KEY>:<API_SECRET>.

  • Enterprise-ID Header: Required when accessing artists at the account level. Pass the enterpriseId as a header.

Example Request

GET /artist/123456
Host: api.audicient.com
Authorization: <API_KEY>:<API_SECRET>
enterprise-id: 100001

Response

Success Response (200 OK)

{
  "artistId": 123456,
  "enterpriseId": 987654,
  "tenantId": "abcd1234-ef56-7890-gh12-ijkl34567890",
  "name": "Example Artist",
  "description": "A sample artist description.",
  "imageId": null,
  "spotifyId": "spotify_abcdef",
  "appleId": "apple_123456",
  "audiomackId": "audiomack_7890",
  "createdAt": "2025-03-16T14:03:23.427Z",
  "updatedAt": "2025-03-16T14:03:23.427Z"
}

Last updated