Start here
Getting started
Make a first safe request and understand the public envelope.
Your first request
- Choose a read-only endpoint such as /api/v1/health.
- Send a GET request with an Accept: application/json header.
- Check response.ok and parse the data/meta envelope.
- Use provenance and dataStatus before presenting observations as current.
curl -i -H "accept: application/json" https://fluxuscentral.sbs/api/v1/healthJavaScript example
const response = await fetch('https://fluxuscentral.sbs/api/v1/status', {
headers: { accept: 'application/json' },
});
if (!response.ok) throw new Error('Fluxus API request failed');
const payload = await response.json();