Health Check
GET
/api/v1/health
const url = 'https://example.com/api/v1/health';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://example.com/api/v1/healthResponses
Section titled “ Responses ”Successful Response
Media type application/json
HealthResponse
object
status
required
Status
string
Example generated
{ "status": "example"}