Skip to content

Health

The Health endpoint provides a simple way to verify the API is operational and check the status of dependent services.


Check API health and connectivity to dependent services.

Auth: None

Response:

{
"status": "healthy",
"checks": {
"api": "ok",
"turso": "ok"
}
}
FieldDescription
statushealthy if all checks pass, degraded if any fail
checks.apiAlways ok if the endpoint responds
checks.tursoDatabase connectivity (ok or error message)
Terminal window
curl https://api.lynxvizion.com/api/health
{
"status": "degraded",
"checks": {
"api": "ok",
"turso": "error: Connection refused"
}
}