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

# Health

> Service health check endpoint

## Health Check

Check the health status of the Chamber API service.

<Note>
  This endpoint does not require authentication and can be used for monitoring and load balancer health checks.
</Note>

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

### Example Request

```bash theme={null}
curl -X GET "https://api.usechamber.io/v1/health"
```

### Example Response

```json theme={null}
{
  "data": {
    "status": "healthy",
    "version": "1.0.0",
    "timestamp": "2024-01-15T10:30:00Z"
  }
}
```

### Response Fields

| Field       | Description                                     |
| ----------- | ----------------------------------------------- |
| `status`    | Service health status: `healthy` or `unhealthy` |
| `version`   | API version number                              |
| `timestamp` | Current server timestamp (ISO 8601)             |
