GET   checks/{checkId}/results?mostrecent={mostrecent}&detail_level={detail_level}

Gets the most recent check results.

URL Parameters

NameDescription
checkId

Check identifier. Type: numeric.

mostrecent

Number of most recent results. Type: numeric.

detail_level

Result detalization level. Allowed values: 0, 1. Default value: 0.

Remarks

The default context for the route is the user context. To enable customer context (if it's allowed for the user) use the request query parameter customer_context=1.

Responses

Request example

Response body model examples and descriptions

When result detalization level is 0

[
  {
    "check_id": 12345,
    "timestamp_utc": "2026-05-12T15:06:56",
    "severity": "F",
    "value": 23454,
    "unit": "byte"
  },
  {
    "check_id": 12345,
    "timestamp_utc": "2026-05-12T15:06:56",
    "severity": "I",
    "value": 1234,
    "unit": "byte"
  },
  {
    "check_id": 12345,
    "timestamp_utc": "2026-05-12T15:06:56",
    "severity": "I",
    "value": 4637,
    "unit": "byte"
  }
]
NameType Description
check_idInteger

The numeric identifier of the check.

timestamp_utcDateTime

Result timestamp.

severityString

Result severity.

valueInteger

Result value.

unitString

Result unit of measure.

When result detalization level is 1

[
  {
    "message": "1 step, 1 page, 19 urls, 3990/482261 sent/received bytes",
    "identifier": "a0a56d1d-5d8a-443d-9ce2-f60b4da8ef0a",
    "attempts": 3,
    "result_code": 0,
    "check_id": 12345,
    "timestamp_utc": "2026-05-12T15:06:56",
    "severity": "W",
    "value": 23454,
    "unit": "ms"
  },
  {
    "message": "1 step, 1 page, 19 urls, 3990/482261 sent/received bytes",
    "identifier": "c1407cf2-5796-436a-91d1-9d9ae2d2d4d1",
    "attempts": 2,
    "result_code": 200,
    "check_id": 12345,
    "timestamp_utc": "2026-05-12T15:06:56",
    "severity": "I",
    "value": 1234,
    "unit": "ms"
  },
  {
    "message": "1 url, 148/6797 sent/received bytes.",
    "identifier": "ae6ccbc3-8657-4135-adeb-68a82dd0100d",
    "attempts": 1,
    "result_code": 0,
    "check_id": 12345,
    "timestamp_utc": "2026-05-12T15:06:56",
    "severity": "E",
    "value": 4637,
    "unit": "ms"
  }
]
NameType Description
messageString

The result message.

identifierGuid

The result identifier.

attemptsInteger

The number of attempts.

result_codeInteger

The code of result.

check_idInteger

The numeric identifier of the check.

timestamp_utcDateTime

Result timestamp.

severityString

Result severity.

valueInteger

Result value.

unitString

Result unit of measure.