# List logging destinations

> Source: https://elaichi.ai/docs/api-reference/logging-destinations/observability-destination/listobservabilitydestinations/

`GET /observability-destination`

Resource: **Observability Destination** · API: **Logging destinations**

## Query parameters

- **`q`** _(string)_
  Case-insensitive substring match on the destination's name. LIKE wildcards are matched literally. Max 200 characters.

## Response body

- **`result`** _(array<object>)_
  - **`id`** _(string)_
    Logging destination id (`ldst_…`).
  - **`type`** _(string)_
    Immutable after creation — to switch providers, create a new destination.
    Allowed: `datadog`, `splunk_hec`, `sentinel`
  - **`name`** _(string)_
  - **`is_active`** _(boolean)_
    Paused destinations keep their config but forward nothing.
  - **`config`** _(object)_
    Non-secret provider settings.
    - **`site`** _(string)_
      Datadog site.
      Allowed: `us1`, `us3`, `us5`, `eu`, `ap1`
    - **`tags`** _(array<string>)_
    - **`log_types`** _(array<string>)_
      Which slices of the audit trail to forward: `tool_call` = MCP/tool executions, `auth` = membership, role, invite and credential events, `admin` = everything else.
  - **`last_test_at`** _(string,null)_
  - **`last_test_status`** _(string,null)_
    Allowed: `ok`, `failed`, `null`
  - **`created_at`** _(string)_
  - **`updated_at`** _(string)_
- **`next_cursor`** _(string,null)_
- **`prev_cursor`** _(string,null)_

## Code examples

### curl

```bash
curl -X GET 'https://api.elaichi.ai/observability-destination' \
  -H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
  -H 'Content-Type: application/json'
```

### JavaScript

```javascript
const response = await fetch('https://api.elaichi.ai/observability-destination', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer ' + process.env.ELAICHI_API_TOKEN,
    'Content-Type': 'application/json',
  },
});

const data = await response.json();
console.log(data);
```

### Python

```python
import os
import requests

url = "https://api.elaichi.ai/observability-destination"
headers = {
    "Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
    "Content-Type": "application/json",
}

response = requests.get(url, headers=headers)
print(response.json())
```
