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

# Health

> GET /v1/health — liveness check.

## `GET /v1/health`

Returns 200 if the server is running. No authentication required. Use this for load balancer health checks and readiness probes.

### Response `200`

```json theme={null}
{ "status": "ok" }
```

### Example

```bash theme={null}
curl http://localhost:3000/v1/health
```

```json theme={null}
{ "status": "ok" }
```

### Notes

This endpoint does not check database connectivity. It returns 200 as long as the Node.js process is alive and the HTTP server is accepting connections. For a deeper health check that exercises the database, call `GET /v1/chain` (authenticated) and verify the response.
