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

# Healthz

<Columns cols={2}>
  <Column>
    Confirms the service process is up and responding. It performs **no dependency checks**, so it stays `200` as long as the process itself is healthy.
  </Column>

  <Column>
    ```shellscript /healthz wrap theme={null}
    curl -sS https://api.storytime.io/healthz
    ```

    ```json 200 theme={null}
    {
        "ok": true
    }
    ```
  </Column>
</Columns>
