curl --request GET \
--url https://api.devhelm.io/api/v1/services/{slugOrId}/live-status \
--header 'Authorization: Bearer <token>'{
"data": {
"overallStatus": "<string>",
"componentStatuses": [
{
"id": "<string>",
"name": "<string>",
"status": "<string>"
}
],
"activeIncidentCount": 123,
"lastPolledAt": "<string>"
}
}Returns only the current overall status, component statuses, and active incident count. Designed for frequent polling with minimal payload.
curl --request GET \
--url https://api.devhelm.io/api/v1/services/{slugOrId}/live-status \
--header 'Authorization: Bearer <token>'{
"data": {
"overallStatus": "<string>",
"componentStatuses": [
{
"id": "<string>",
"name": "<string>",
"status": "<string>"
}
],
"activeIncidentCount": 123,
"lastPolledAt": "<string>"
}
}