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 health status, service name, timestamp, deployed version, and uptime of the integrity service
Responses
Section titled “ Responses ”Service is healthy
Media type application/json
object
service
required
string
status
required
string
timestamp
required
string format: date-time
uptime_seconds
required
integer format: int64
version
required
string
Example
{ "timestamp": "2025-03-12T12:00:06Z"}