API reference
Health endpoint
Safe read-layer health without leaking database credentials.
Request
GET /api/v1/healthReports whether the public read layer can reach its configured database.
| Parameter | Accepted value |
|---|---|
| Query | No query parameters. Health is not cached. |
Response fields
| Field | Meaning |
|---|---|
| service | fluxus-read-api. |
| status | ok when the handler responds. |
| database | reachable, unavailable or not-configured. |
| generatedAt | Server timestamp for this health read. |
{
"data": {
"service": "fluxus-read-api",
"status": "ok",
"database": "reachable",
"generatedAt": "2026-08-22T18:00:29.672Z"
},
"meta": {
"apiVersion": "v1",
"generatedAt": "2026-08-22T18:00:29.599Z",
"dataStatus": "fresh",
"nextCursor": null,
"hasMore": false
}
}Notes and relationships
The response never includes DATABASE_URL, SQL schema or connection diagnostics.