Query & HTTP API
nimbus query
Section titled “nimbus query”Structured reads over the local SQLite index via Gateway IPC:
nimbus query --service github --type pr --since 7d --limit 50 --jsonnimbus query --sql "SELECT id, title FROM item WHERE pinned = 1 LIMIT 10" --pretty--sql is restricted to read-only SELECT statements against the public index schema.
Read-only HTTP (nimbus serve)
Section titled “Read-only HTTP (nimbus serve)”With the Gateway started using nimbus serve (or equivalent HTTP sidecar flags), a localhost-only server exposes JSON endpoints such as:
GET /v1/items— same filter semantics asindex.queryItems/nimbus query(shared SQL builder)GET /v1/items/:id,GET /v1/people,GET /v1/connectors,GET /v1/audit,GET /v1/health
There is no auth on localhost by design — bind address is loopback only.