# Get Label Details

### API Endpoint

```http
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

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

### Response

#### Success Response (200 OK)

```json
{
  "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"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://audicient.gitbook.io/audicient/labels/get-label-details.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
