/healthz
GET
/healthz
const url = 'https://service.v2.nairon.xyz/healthz';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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://service.v2.nairon.xyz/healthz \ --header 'Authorization: Bearer <token>'Liveness probe — no auth required.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Default Response
Media typeapplication/json
object
status
required
string
service
required
string
version
required
string
Example
{ "status": "ok", "service": "service-api"}