Health
The GET /health endpoint reports the service’s readiness. It’s a public endpoint, meaning no API key or bearer token is required. Additionally, it’s unversioned, so there’s no need for a /json/{version} prefix. You can use this endpoint to monitor the availability of Breeze Offer Orders alongside your own systems. The same endpoint also covers the NDC/XML APIs, which are handled by the same service.
Request
GET /health
Accept: application/json
Response
200 OK when the service is ready to take traffic:
{
"status": "ok",
"timestamp": "2026-07-22T15:04:05.000Z"
}
503 Service Unavailable while the service is starting and the flight schedule is still loading:
{
"status": "loading"
}
Treat any non-200 response as unhealthy. The response is not wrapped in the { data, error } envelope.