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
  • Query Parameters
  • Response
  1. Labels

List all labels

API Endpoint

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

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 for impersonation when accessing user-specific data.

Query Parameters

Parameter
Type
Description
Default

orderByDescending

boolean

Whether to sort results in descending order (true or false).

true

orderByProperty

string

Property to sort by.

createdAt

pageSize

number

Number of items per page.

20

pageNumber

number

The page number to retrieve.

1

fromDate

string

Filter results from this date (ISO format).

optional

toDate

string

Filter results up to this date (ISO format).

optional

searchText

string

Search query to filter labels.

"" (empty string)

Response

Success Response (200 OK)

{
  "totalItemsCount": 1,
  "pageNumber": 1,
  "pageSize": 20,
  "items": [
    {
      "labelId": 100004,
      "enterpriseId": 100003,
      "tenantId": "84df22ce-05de-4ca9-a4e3-b9187c4e4cb0",
      "name": "Destiny Madrid Record",
      "description": "",
      "imageId": null,
      "createdAt": "2025-03-13T15:02:33.391Z",
      "updatedAt": "2025-03-13T15:02:33.391Z"
    }
  ],
  "additionalCounters": null
}
PreviousLabelsNextCreate label

Last updated 2 months ago