Skip to main content
GET
/
api
/
v1
/
monitors
/
{id}
/
results
List raw check results
curl --request GET \
  --url https://api.devhelm.io/api/v1/monitors/{id}/results \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {}
  ],
  "nextCursor": "<string>",
  "hasMore": true
}

Authorizations

Authorization
string
header
required

API key (dh_live_...) or Auth0 JWT token

Path Parameters

id
string<uuid>
required

Query Parameters

from
string<date-time>

Start of time range (ISO 8601, inclusive); defaults to 24 hours ago

to
string<date-time>

End of time range (ISO 8601, inclusive); defaults to now

cursor
string

Opaque cursor from a previous response for pagination

limit
integer<int32>
default:50

Maximum results per page (1–200)

region
string

Filter by region (e.g. us-east)

passed
boolean

Filter by pass/fail status

Response

Paginated check results

Cursor-paginated response for time-series and append-only data

data
object[]

Items on this page

nextCursor
string | null

Opaque cursor for the next page; null when there are no more results

hasMore
boolean

Whether more results exist beyond this page