Get appliance overview
GET
/v1/admin/appliance-overviewReturn sanitized aggregate usage, managed-container, runtime, memory, and storage information for an on-prem appliance.
How to call this endpoint
Every ACP API request uses bearer authentication. The examples here show the actual request path, auth header, and body shape that the platform expects.
Path, query, and header parameters
These parameters control which ACP object the endpoint acts on and how the request is processed.
Path parameters
None.
Query parameters
None.
Body schema
This endpoint does not require a request body.
None.
What the API returns
Each response code below includes the documented payload shape for the ACP API.
200Appliance overviewapplication/json
| Field | Type | Required | Description |
|---|---|---|---|
| schemaVersion | 1 | Yes | — |
| generatedAt | string | Yes | — |
| deployment | object | Yes | — |
| deployment.profileId | string | Yes | — |
| deployment.topology | on_prem | Yes | — |
| deployment.releaseId | string | Yes | — |
| deployment.modelId | string | Yes | — |
| users | object | Yes | — |
| users.total | integer | Yes | — |
| users.active | integer | Yes | — |
| inference | object | Yes | — |
| inference.threads | integer | Yes | — |
| inference.inputTokens | integer | Yes | — |
| inference.outputTokens | integer | Yes | — |
| inference.cacheTokens | integer | Yes | — |
| inference.totalTokens | integer | Yes | — |
| containers | object | Yes | — |
| containers.status | available | unavailable | Yes | Current lifecycle status. |
| containers.running | integer | Yes | — |
| containers.total | integer | Yes | — |
| host | object | Yes | — |
| host.architecture | string | Yes | — |
| host.cpuCount | integer | Yes | — |
| host.loadAverage1m | number | Yes | — |
| host.uptimeSeconds | number | Yes | — |
| host.memory | object | Yes | — |
| host.memory.totalBytes | number | Yes | — |
| host.memory.availableBytes | number | Yes | — |
| host.memory.usedBytes | number | Yes | — |
| host.memory.usedPercent | number | Yes | — |
| host.storage | object | Yes | — |
| host.storage.totalBytes | number | Yes | — |
| host.storage.availableBytes | number | Yes | — |
| host.storage.usedBytes | number | Yes | — |
| host.storage.usedPercent | number | Yes | — |
| runtime | object | Yes | — |
| runtime.status | string | Yes | Current lifecycle status. |
| runtime.provider | string | Yes | — |
| runtime.engine | string | Yes | — |
| runtime.serverVersion | string | Yes | — |
404The deployment is not an on-prem appliance
None.
500Appliance overview unavailable
None.