Audicient API
  • Getting Started
  • Authentication
    • Signing Up New Users
  • Common
  • Media
    • Image
      • Get image
      • Upload Image
      • Update image
    • Audio
      • Get audio
      • Upload audio
      • Update audio
  • Users
  • Contracts
    • Get User Contract
    • Update User Contract
    • Remove stores for a account
    • Terminate Account
  • Artists
    • List all artists
    • Create artist
    • Get Artist Details
    • Update Artist
  • Labels
    • List all labels
    • Create label
    • Get Label Details
    • Update Label
  • Releases
    • Get Releases
    • Get Release Detail
    • Get Tracks
    • Save Release
  • Distribution
    • QC Approval
    • Remove store from delivery
    • Add release to delivery queue
    • Upload Release on Consolidated Independent / State 51
    • Upload on FUGA
Powered by GitBook
On this page
  • API Endpoint
  • Path Parameters
  • Authentication Requirements
  • Example Request
  • Response
  1. Labels

Get Label Details

API Endpoint

GET /label/:labelId
Host: api.audicient.com
Authorization: <API_KEY>:<API_SECRET>

Path Parameters

Parameter
Type
Description

labelId

string

The unique ID of the label

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 /label/123456
Host: api.audicient.com
Authorization: <API_KEY>:<API_SECRET>
enterprise-id: 100001

Response

Success Response (200 OK)

{
  "labelId": 100004,
  "enterpriseId": 100003,
  "tenantId": "84df22ce-05de-4ca9-a4e3-b9187c4e4cb0",
  "name": "Example Label",
  "description": "",
  "imageId": null,
  "createdAt": "2025-03-13T15:02:33.391Z",
  "updatedAt": "2025-03-13T15:02:33.391Z"
}
PreviousCreate labelNextUpdate Label

Last updated 2 months ago