cURL
curl --request GET \ --url https://api.example.com/health
{ "status": "<string>", "database": "<string>", "langgraph_checkpointer": "<string>", "langgraph_store": "<string>" }
Check the health of all server components.
Verifies connectivity to PostgreSQL, the checkpoint backend, and the store backend. Returns 503 if any component is unhealthy.
Successful Response
Health check response model
Overall health status: 'healthy' or 'unhealthy'.
PostgreSQL connection status.
Checkpoint backend connection status.
Store backend connection status.