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

fetch('https://api.phaseo.app/v1/health', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "status": "ok"
}
A lightweight liveness probe. Returns { "status": "ok" } when the gateway is reachable and able to serve requests.

Authorizations

Authorization
string
header
required

Bearer token authentication

Response

200 - application/json

OK

status
string
Example:

"ok"

Last modified on February 11, 2026