TIPTIP
API Reference

Check health

GET
/health

Liveness check. Always responds 200; Postgres and Redis reachability are checked independently and reported separately, so one dependency being down never hides or fails the check for the other.

Response Body

application/json

curl -X GET "https://example.com/health"
{  "status": "ok",  "db": "reachable",  "redis": "reachable"}