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

# GET /health

> Check API availability

## Endpoint

```
GET https://lyrcs.ai/api/v1/health
```

**No authentication required.** Use this to verify the API is reachable before making authenticated calls, or as a liveness check in your infrastructure.

## Response — 200 OK

```json theme={null}
{
  "status": "ok",
  "version": "1.0"
}
```

## Examples

<CodeGroup>
  ```bash curl theme={null}
  curl https://lyrcs.ai/api/v1/health
  ```

  ```javascript Node.js theme={null}
  const res = await fetch("https://lyrcs.ai/api/v1/health");
  const { status } = await res.json();
  if (status !== "ok") throw new Error("API unavailable");
  ```

  ```python Python theme={null}
  import requests

  r = requests.get("https://lyrcs.ai/api/v1/health")
  assert r.json()["status"] == "ok", "API unavailable"
  ```
</CodeGroup>
