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

# Health check

> GET /v1/health confirms the API is reachable. No authentication required.

<div>
  `GET` `/v1/health`
</div>

Returns a small payload confirming the service is up. This is the only endpoint that does **not** require an API key, so you can use it for uptime monitoring without embedding a credential in your monitor.

## Request

```bash theme={null}
curl https://api.pruva.africa/v1/health
```

## Response

Returns `200`.

```json theme={null}
{
  "status": true,
  "data": {
    "service": "pruva-api",
    "status": "ok"
  }
}
```

<Note>
  This checks that the API is reachable and serving requests. It does not run a check or touch a provider, so a healthy response does not by itself guarantee a specific scope's provider is available.
</Note>
