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

# GET /healthz: Data API Liveness Probe

> Unauthenticated liveness probe for the Bravado Data API.

Returns `200` when the Data API is healthy. No authentication required.

```text theme={null}
GET https://bravado-api-k7kaq.ondigitalocean.app/healthz
```

### Response

<ResponseField name="ok" type="boolean">
  `true` when the service is healthy.
</ResponseField>

<ResponseField name="ts" type="string">
  RFC 3339 UTC timestamp.
</ResponseField>

### Example

<CodeGroup>
  ```bash cURL theme={null}
  curl https://bravado-api-k7kaq.ondigitalocean.app/healthz
  ```

  ```json Response theme={null}
  {
    "ok": true,
    "ts": "2025-01-15T12:00:00Z"
  }
  ```
</CodeGroup>
