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

# GET /v1/health

> Check API availability and version

<Note>
  **No authentication required.** This endpoint is public and can be used for uptime monitoring.
</Note>

## Example Request

```bash theme={null}
curl https://api.ambientmeta.com/v1/health
```

## Response

| Field     | Type   | Description                                  |
| --------- | ------ | -------------------------------------------- |
| `status`  | string | Always `"healthy"` when the API is reachable |
| `version` | string | Current API version                          |

### Example Response

```json theme={null}
{
  "status": "healthy",
  "version": "1.1.0"
}
```
