Readiness check
GET
/readyz
const url = 'https://hitkeep.com/readyz';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://hitkeep.com/readyzReadiness endpoint (leader and DB readiness).
Responses
Section titled “ Responses ”Ready
Not ready
Media type application/json
object
message
string
Example generated
{ "message": "example"}