Get results summary
curl --request GET \
--url https://api.devhelm.io/api/v1/monitors/{id}/results/summary \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.devhelm.io/api/v1/monitors/{id}/results/summary"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.devhelm.io/api/v1/monitors/{id}/results/summary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.devhelm.io/api/v1/monitors/{id}/results/summary",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.devhelm.io/api/v1/monitors/{id}/results/summary"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.devhelm.io/api/v1/monitors/{id}/results/summary")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.devhelm.io/api/v1/monitors/{id}/results/summary")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"latestPerRegion": [
{
"region": "us-east",
"passed": true,
"timestamp": "2023-11-07T05:31:56Z",
"responseTimeMs": 95,
"severityHint": "<string>"
}
],
"chartData": [
{
"bucket": "2026-03-12T10:00:00Z",
"uptimePercent": 100,
"avgLatencyMs": 120.3,
"p95LatencyMs": 250,
"p99LatencyMs": 480
}
],
"uptime24h": 99.95,
"uptimeWindow": 99.8
}{
"data": {
"latestPerRegion": [
{
"region": "us-east",
"passed": true,
"timestamp": "2023-11-07T05:31:56Z",
"responseTimeMs": 95,
"severityHint": "<string>"
}
],
"chartData": [
{
"bucket": "2026-03-12T10:00:00Z",
"uptimePercent": 100,
"avgLatencyMs": 120.3,
"p95LatencyMs": 250,
"p99LatencyMs": 480
}
],
"uptime24h": 99.95,
"uptimeWindow": 99.8
}
}{
"status": 404,
"code": "NOT_FOUND",
"message": "Monitor not found",
"timestamp": 1737302400000,
"requestId": "5b6f7a8c-1234-4d5e-9f0a-1b2c3d4e5f6a"
}{
"data": {
"latestPerRegion": [
{
"region": "us-east",
"passed": true,
"timestamp": "2023-11-07T05:31:56Z",
"responseTimeMs": 95,
"severityHint": "<string>"
}
],
"chartData": [
{
"bucket": "2026-03-12T10:00:00Z",
"uptimePercent": 100,
"avgLatencyMs": 120.3,
"p95LatencyMs": 250,
"p99LatencyMs": 480
}
],
"uptime24h": 99.95,
"uptimeWindow": 99.8
}
}{
"data": {
"latestPerRegion": [
{
"region": "us-east",
"passed": true,
"timestamp": "2023-11-07T05:31:56Z",
"responseTimeMs": 95,
"severityHint": "<string>"
}
],
"chartData": [
{
"bucket": "2026-03-12T10:00:00Z",
"uptimePercent": 100,
"avgLatencyMs": 120.3,
"p95LatencyMs": 250,
"p99LatencyMs": 480
}
],
"uptime24h": 99.95,
"uptimeWindow": 99.8
}
}{
"status": 404,
"code": "NOT_FOUND",
"message": "Monitor not found",
"timestamp": 1737302400000,
"requestId": "5b6f7a8c-1234-4d5e-9f0a-1b2c3d4e5f6a"
}{
"status": 404,
"code": "NOT_FOUND",
"message": "Monitor not found",
"timestamp": 1737302400000,
"requestId": "5b6f7a8c-1234-4d5e-9f0a-1b2c3d4e5f6a"
}{
"status": 404,
"code": "NOT_FOUND",
"message": "Monitor not found",
"timestamp": 1737302400000,
"requestId": "5b6f7a8c-1234-4d5e-9f0a-1b2c3d4e5f6a"
}{
"status": 404,
"code": "NOT_FOUND",
"message": "Monitor not found",
"timestamp": 1737302400000,
"requestId": "5b6f7a8c-1234-4d5e-9f0a-1b2c3d4e5f6a"
}Check Results
Get results summary
Returns a dashboard summary for the monitor: current status derived from the latest result per region, time-bucketed chart data, the 24-hour uptime percentage, and the selected window’s uptime percentage.
GET
/
api
/
v1
/
monitors
/
{id}
/
results
/
summary
Get results summary
curl --request GET \
--url https://api.devhelm.io/api/v1/monitors/{id}/results/summary \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.devhelm.io/api/v1/monitors/{id}/results/summary"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.devhelm.io/api/v1/monitors/{id}/results/summary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.devhelm.io/api/v1/monitors/{id}/results/summary",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.devhelm.io/api/v1/monitors/{id}/results/summary"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.devhelm.io/api/v1/monitors/{id}/results/summary")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.devhelm.io/api/v1/monitors/{id}/results/summary")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"latestPerRegion": [
{
"region": "us-east",
"passed": true,
"timestamp": "2023-11-07T05:31:56Z",
"responseTimeMs": 95,
"severityHint": "<string>"
}
],
"chartData": [
{
"bucket": "2026-03-12T10:00:00Z",
"uptimePercent": 100,
"avgLatencyMs": 120.3,
"p95LatencyMs": 250,
"p99LatencyMs": 480
}
],
"uptime24h": 99.95,
"uptimeWindow": 99.8
}{
"data": {
"latestPerRegion": [
{
"region": "us-east",
"passed": true,
"timestamp": "2023-11-07T05:31:56Z",
"responseTimeMs": 95,
"severityHint": "<string>"
}
],
"chartData": [
{
"bucket": "2026-03-12T10:00:00Z",
"uptimePercent": 100,
"avgLatencyMs": 120.3,
"p95LatencyMs": 250,
"p99LatencyMs": 480
}
],
"uptime24h": 99.95,
"uptimeWindow": 99.8
}
}{
"status": 404,
"code": "NOT_FOUND",
"message": "Monitor not found",
"timestamp": 1737302400000,
"requestId": "5b6f7a8c-1234-4d5e-9f0a-1b2c3d4e5f6a"
}{
"data": {
"latestPerRegion": [
{
"region": "us-east",
"passed": true,
"timestamp": "2023-11-07T05:31:56Z",
"responseTimeMs": 95,
"severityHint": "<string>"
}
],
"chartData": [
{
"bucket": "2026-03-12T10:00:00Z",
"uptimePercent": 100,
"avgLatencyMs": 120.3,
"p95LatencyMs": 250,
"p99LatencyMs": 480
}
],
"uptime24h": 99.95,
"uptimeWindow": 99.8
}
}{
"data": {
"latestPerRegion": [
{
"region": "us-east",
"passed": true,
"timestamp": "2023-11-07T05:31:56Z",
"responseTimeMs": 95,
"severityHint": "<string>"
}
],
"chartData": [
{
"bucket": "2026-03-12T10:00:00Z",
"uptimePercent": 100,
"avgLatencyMs": 120.3,
"p95LatencyMs": 250,
"p99LatencyMs": 480
}
],
"uptime24h": 99.95,
"uptimeWindow": 99.8
}
}{
"status": 404,
"code": "NOT_FOUND",
"message": "Monitor not found",
"timestamp": 1737302400000,
"requestId": "5b6f7a8c-1234-4d5e-9f0a-1b2c3d4e5f6a"
}{
"status": 404,
"code": "NOT_FOUND",
"message": "Monitor not found",
"timestamp": 1737302400000,
"requestId": "5b6f7a8c-1234-4d5e-9f0a-1b2c3d4e5f6a"
}{
"status": 404,
"code": "NOT_FOUND",
"message": "Monitor not found",
"timestamp": 1737302400000,
"requestId": "5b6f7a8c-1234-4d5e-9f0a-1b2c3d4e5f6a"
}{
"status": 404,
"code": "NOT_FOUND",
"message": "Monitor not found",
"timestamp": 1737302400000,
"requestId": "5b6f7a8c-1234-4d5e-9f0a-1b2c3d4e5f6a"
}Authorizations
API key (dh_live_...) or Auth0 JWT token
Path Parameters
Query Parameters
Chart window: 24h returns hourly buckets, 7d/30d/90d return daily buckets
Available options:
24h, 7d, 30d, 90d Response
Results summary
Dashboard summary: current status, per-region latest results, and chart data
Derived current status across all regions
Available options:
up, degraded, down, paused, unknown Latest check result per region
Show child attributes
Show child attributes
Time-bucketed chart data for the requested window
Show child attributes
Show child attributes
Uptime percentage over the last 24 hours; null when no data
Example:
99.95
Uptime percentage for the selected chart window; null when no data
Example:
99.8
⌘I