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

# System

> Platform health and API self-description.

Platform health and API self-description.

## system.health

Service liveness check.

```text theme={null}
GET /v1/health
```

* **Auth:** None — public endpoint.
* **Risk:** `read`

### Example

```bash theme={null}
curl "https://api.korve.dev/v1/health"
```

### Responses

| Status | Description         |
| ------ | ------------------- |
| `200`  | Service is healthy. |

### Response body (200)

| Field     | Type    | Description |
| --------- | ------- | ----------- |
| `ok`      | boolean | —           |
| `service` | string  | —           |

## system.spec

OpenAPI document describing every public Korve operation.

```text theme={null}
GET /v1/spec
```

* **Auth:** None — public endpoint.
* **Risk:** `read`

### Example

```bash theme={null}
curl "https://api.korve.dev/v1/spec"
```

### Responses

| Status | Description           |
| ------ | --------------------- |
| `200`  | OpenAPI 3.1 document. |
