# Health

**Audience:** Developers

## Health API Contract

### Health Check (`GET /health`)

Check the health status of the GL Open DeepResearch service.

**Example cURL:**

```bash
curl --location 'https://stag-gl-deep-research.obrol.id/health'
```

**Example Response:**

```json
{
  "status": "ok"
}
```

**Response Fields:**

| Field    | Type   | Description                                     |
| -------- | ------ | ----------------------------------------------- |
| `status` | string | API health status. Returns `"ok"` when healthy. |
