Skip to content

The Hoody SQLite service provides a unified data layer that combines a fully featured SQL engine with a key-value store, both backed by the same hardened SQLite runtime. Use these endpoints to execute SQL transactions, manage KV data, and observe service health.

SQL Operations

Execute SQL transactions, create databases, and run queries against the SQLite engine.

Open SQL Operations →

Health endpoints expose liveness and observability signals for the SQLite service. The main health endpoint returns service identity, process-level resource counters, and hardening snapshots in a single response. The dedicated cache endpoint exposes only the cache sub-object for dashboards that need to poll cache pressure without re-reading process-level memory or file descriptors.

Health check endpoint. One scrape covers both liveness and Phase G observability signals.

This endpoint takes no parameters.

Terminal window
curl -X GET "https://api.hoody.com/api/v1/sqlite/health" \
-H "Authorization: Bearer <token>"

Returns only the cache sub-object from /health. Designed for dashboards that poll cache pressure without re-reading process-level memory or file descriptors.

This endpoint takes no parameters.

Terminal window
curl -X GET "https://api.hoody.com/api/v1/sqlite/health/cache" \
-H "Authorization: Bearer <token>"