Health

Check system health.

Checks whether the system's components are up and running.

GEThttps://api.tradeaware.live-eo.com/health
Response

The Health Check is successful

Body
statusstring
Example: "ok"
infonullable object
errornullable object
detailsobject
Request
const response = await fetch('https://api.tradeaware.live-eo.com/health', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "status": "ok",
  "info": {
    "database": {
      "status": "up"
    }
  },
  "error": {},
  "details": {
    "database": {
      "status": "up"
    }
  }
}

Last updated