curl --request GET \
--url https://api.devhelm.io/api/v1/dashboard/overview \
--header 'Authorization: Bearer <token>'{
"data": {
"monitors": {
"total": 123,
"up": 123,
"down": 123,
"degraded": 123,
"paused": 123,
"avgUptime24h": 123,
"avgUptime30d": 123
},
"incidents": {
"active": 123,
"resolvedToday": 123,
"mttr30d": 123
}
}
}Returns monitor status counts, average uptime windows, and incident aggregates for the authenticated org. Results are cached for 1 minute.
curl --request GET \
--url https://api.devhelm.io/api/v1/dashboard/overview \
--header 'Authorization: Bearer <token>'{
"data": {
"monitors": {
"total": 123,
"up": 123,
"down": 123,
"degraded": 123,
"paused": 123,
"avgUptime24h": 123,
"avgUptime30d": 123
},
"incidents": {
"active": 123,
"resolvedToday": 123,
"mttr30d": 123
}
}
}