API reference: Health
Cloud Control's public health probe: a liveness and database-connectivity check that reports the selected storage driver (sqlite, postgres or turso) and the deployed commit.
A public liveness and connectivity probe. It exposes no sensitive detail and is the fastest way to confirm which database a deployment is really using.
GET
/api/healthPublicReport liveness, the active storage driver and the deployed commit.
Example response
json
// healthy:
{ "ok": true, "database": "turso", "commit": "a1b2c3d" }
// database down:
{ "ok": false, "driver": "turso", "errorCode": "…", "hint": "…" }Errors
| Status | When |
|---|---|
503 | Database initialization or ping failed — carries a short errorCode and a hint. |