Health
curl --request GET \
--url https://api.veridical.dev/healthimport requests
url = "https://api.veridical.dev/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.veridical.dev/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}API Reference
Health
Liveness + light readiness signal (queue depth / processed / failed counts) PLUS the in-flight-review staleness signal (opus review F101): a review still running past the wall budget is an ORPHANED thread from a hung review; a climbing orphan count means the worker is wedged and an orchestrator should restart it. status is ‘degraded’ whenever any orphan exists.
GET
/
health
Health
curl --request GET \
--url https://api.veridical.dev/healthimport requests
url = "https://api.veridical.dev/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.veridical.dev/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}Response
200 - application/json
Successful Response
The response is of type Response Health Health Get · object.
Last modified on July 28, 2026
⌘I

