API reference
API overview
A map of the public, read-only Fluxus Central API.
Base URL
The production API is served from the same origin as the website. Prefix every route with https://fluxuscentral.sbs/api/v1.
curl -sS https://fluxuscentral.sbs/api/v1/healthAuthentication
Endpoint groups
| Group | Routes | Purpose |
|---|---|---|
| Overview | /overview, /health, /sources | Read-layer state and provenance. |
| Status | /status and /status/services | Current health and stored observations. |
| Development | /commits and /findings | Allowlisted activity and evidence. |
| Delivery | /releases, /builds and /rollouts | Public delivery observations. |
| Ecosystem | /repositories, /missions, /news and /articles | Approved repository and feed records. |
| Search | /search | Public-safe cross-domain search. |
Response shape
Successful reads use a stable envelope. Page endpoints return arrays in data and cursor metadata.
{
"data": {},
"meta": {
"apiVersion": "v1",
"generatedAt": "2026-01-01T00:00:00.000Z",
"dataStatus": "fresh",
"nextCursor": null,
"hasMore": false
}
}Records with external evidence include a provenance object. Exact data fields are listed on each endpoint page.
Interactive explorer
Use /api/docs to inspect live responses and copy request examples. This documentation route explains the contract; the explorer is the practical debugging surface.