Skip to main content
GET
/
v1
/
healthz
Health probe
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://sandbox.api.enfinitos.com/v1/healthz', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "ok": true,
  "data": {},
  "contractVersion": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Health status.

ok
boolean
required
data
object
required

Provider-mode bindings (modelled loosely — the exact fields reflect the deployment's bound providers).

contractVersion
string
required
Allowed value: "v1.0"