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

# Health

> Check service health

Returns Vrin service health status. No authentication required.

```
GET /health
```

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "healthy",
    "version": "1.0.0",
    "timestamp": "2025-12-15T10:30:00Z"
  }
  ```
</ResponseExample>

### SDK usage

```python theme={null}
status = client.health_check()
if status.get("status") == "healthy":
    print("Vrin is operational")
```
