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

# Settings

> View platform settings including database status and feature flags.

## GET /api/v1/settings

Returns platform configuration including API version, database connection status, and available feature flags.

### Response

```json theme={null}
{
  "apiVersion": "v1",
  "dbStatus": "connected",
  "featureFlags": {
    "simulationMode": true,
    "explainabilityPanel": true,
    "batchDecisioning": true,
    "auditLogging": true,
    "pipelineExecution": true,
    "exportImport": true
  }
}
```

### Field Reference

| Field          | Type   | Description                                                               |
| -------------- | ------ | ------------------------------------------------------------------------- |
| `apiVersion`   | string | Current API version                                                       |
| `dbStatus`     | string | Database connection status: `"connected"`, `"disconnected"`, or `"error"` |
| `featureFlags` | object | Map of feature flags and their enabled state                              |

### Feature Flags

| Flag                  | Description                                 |
| --------------------- | ------------------------------------------- |
| `simulationMode`      | Decision simulation support                 |
| `explainabilityPanel` | Score explanation panels in decision traces |
| `batchDecisioning`    | Batch decision processing                   |
| `auditLogging`        | Audit trail recording                       |
| `pipelineExecution`   | ETL pipeline execution                      |
| `exportImport`        | Config export/import functionality          |

***

## Roles

| Endpoint        | Allowed Roles         |
| --------------- | --------------------- |
| `GET /settings` | admin, editor, viewer |

See also: [Compliance](/governance-security/compliance)
