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

# GET /health

> Simple health check endpoint

Simple health check for load balancers and monitoring systems.

## Endpoint

```
GET /health
```

## Example Request

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

## Response

```json theme={null}
{
  "status": "healthy",
  "time": "2025-11-11T21:33:53.103Z",
  "version": "1.0.0"
}
```

## Response Fields

| Field     | Type   | Description                            |
| --------- | ------ | -------------------------------------- |
| `status`  | string | Always `"healthy"` when API is running |
| `time`    | string | Current server time (ISO 8601)         |
| `version` | string | Blocklight API version                 |

<Note>
  Also available at `GET /api/v1/system/health`. Supports HEAD requests for lightweight health checks.
</Note>
