Skip to main content
Version: v2.x

Health check API Reference

Introduction

The Health API is a public endpoint which gives info on the server health.

Endpoint

All requests are GET requests to the /healthz endpoint. There's also /hasura/healthz available as an alternative, which mirrors /healthz completely.

API Spec

Request

GET /healthz HTTP/1.1

Response

Depending on the server health status any of the following responses can be returned:

Server conditionHTTP StatusMessage
All healthy200OK
Serving requests but some metadata objects are inconsistent/not-available200WARN: inconsistent objects in schema
Unhealthy500ERROR
Note

If there are metadata inconsistencies, you should use the Hasura console or the get_inconsistent_metadata metadata API to find out what the inconsistent objects are and resolve them.

Sample response

HTTP/1.1 200 OK

Disabling Health check API

The healthz API endpoint is public and cannot be disabled.