Get the health status of the service
GET
/health/v1
const url = 'https://example.com/health/v1';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/health/v1Get the health status of the service
Returns the current health status and uptime of the integrity service
Responses
Section titled “ Responses ”Service is healthy
Media type application/json
object
status
required
string
uptime_seconds
required
integer format: int64
version
required
string
Example generated
{ "status": "example", "uptime_seconds": 1, "version": "example"}