Health

The Avian API's base URL is https://api.avian.io

GET/health
Response

Returns the health status of the server

Body
status*string
Request
const response = await fetch('/health', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "status": "text"
}

Last updated