Overview
GET
/healthsystemLiveness probe
List health.
Responses
200
ok
No response body.
Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/health" \
-H "Authorization: Bearer YOUR_TOKEN"JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/health", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
},
});
const data = await res.json();