> ## Documentation Index
> Fetch the complete documentation index at: https://humanity-eaeda8f6.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Operations · Health

<Callout>
  **SDK equivalent**

  ```ts theme={null}
  const status = await sdk.healthcheck();
  ```
</Callout>

Simple liveness probe that surfaces:

* `status` (`ok` when the app is running)
* `uptime`, `timestamp`
* `version` (npm package version) and `commit` (git SHA)

Pair with `GET /ready` for a readiness check that fans out across downstream dependencies (databases, Kafka, cache). Wire both into your load balancer and monitoring stack.
