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

# Health

> GET /api/v1/health

Returns service status, database connectivity, and memory usage.

```
GET /api/v1/health
```

### Response

```json theme={null}
{
  "success": true,
  "message": "Service is healthy",
  "data": {
    "status": "healthy",
    "uptime": 1234.56,
    "database": "connected",
    "memory": {
      "heapUsed": "45MB",
      "heapTotal": "64MB",
      "rss": "120MB"
    }
  },
  "metadata": {
    "environment": "development",
    "timestamp": "2026-06-28T12:00:00.000Z",
    "version": "1.0.0",
    "requestId": "550e8400-e29b-41d4-a716-446655440000",
    "ip": "::1"
  }
}
```

When the database is unreachable, the API returns `503` with degraded status.
