> ## Documentation Index
> Fetch the complete documentation index at: https://docs.60db.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Health Check

> Check Music service status

Check the health and readiness of the Music service.

## Request

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token with your API key
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  True on success
</ResponseField>

<ResponseField name="data" type="object">
  <Expandable title="properties">
    <ResponseField name="ready" type="boolean">
      Whether the service is ready to process requests
    </ResponseField>

    <ResponseField name="status" type="string">
      Status string: `ready`, `loading`, `unavailable`, etc.
    </ResponseField>
  </Expandable>
</ResponseField>

## Example

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.60db.ai/songs/health \
    -H "Authorization: Bearer your-api-key"
  ```

  ```javascript JavaScript theme={null}
  const health = await client.music.health();
  if (health.data.ready) {
    console.log('Service is ready!');
  }
  ```

  ```python Python theme={null}
  health = client.music.health()
  if health['data']['ready']:
      print('Service is ready!')
  ```
</RequestExample>
