Skip to main content
GET
/
health
Liveness and basic configuration probe.
curl --request GET \
  --url http://localhost:3774/health
{
  "ok": true,
  "name": "@bindu/gateway",
  "session": "stateful",
  "supabase": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.getbindu.com/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

Gateway is up. Response body describes the process — version, identity, configured planner model, recipe count, uptime. The 200 status is informational, not a health gate: read status and ready in the body to distinguish healthy from degraded.

Simplified gateway health payload providing essential status information.

ok
boolean
required

Overall health status - true when healthy, false when unhealthy.

Example:

true

name
string
required

Gateway service name identifier.

Example:

"@bindu/gateway"

session
enum<string>
required

Session persistence mode configuration.

Available options:
stateful,
stateless
Example:

"stateful"

supabase
boolean
required

Whether Supabase storage backend is connected and healthy.

Example:

true