GET   checks/results?fromUtc={fromUtc}&toUtc={toUtc}&detail_level={detail_level}&fromMillisecondsUtc={fromMillisecondsUtc}&toMillisecondsUtc={toMillisecondsUtc}&include_tag_op={include_tag_op}&start={start}&limit={limit}

Gets check results between two dates.

URL Parameters

NameDescription
include_tag

(Optional) The 'include_tag' parameter defines which checks to include in the response, by filtering on the check 'tags' (see the Filtering by Tags section in Remarks for details).

exclude_tag

(Optional) The 'exclude_tag' parameter defines which checks to exclude from the response, by filtering on the check 'tags' (see the Filtering by Tags section in Remarks for details).

fromUtc

Timestamp in UTC format. Example: 2013-08-20T13:32:08.

toUtc

Timestamp in UTC format. Example: 2013-08-20T13:32:08.

detail_level

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

fromMillisecondsUtc

Timestamp represented as a UNIX Epoch timestamp (millisecs after 1970). Type: numeric. Example: 1376980667000.

toMillisecondsUtc

Timestamp represented as a UNIX Epoch timestamp (millisecs after 1970). Type: numeric. Example: 1376980667000.

include_tag_op

AND/OR mode for including tags. Allowed values: 'or', 'and'. Default value: 'or'.

start

(Optional) The starting index for fetching check.Used for pagination to skip a number of checks. Type: numeric.

limit

(Optional) The maximum number of check to return. Must not be greater than 100. Type: numeric.

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.

Filtering by Tags

Checks can be filtered on the check 'tags', using tag 'key' and/or 'value'. Tilde '~' is used to indicate values. Multiple values are separated with semicolon ';'. Example: Environment~Dev;Prod (Key: 'Environment', Values: 'Dev' and 'Prod').



You can provide the tag key only (all checks with that key) or only the value (all checks with that value in any key). Examples: Environment (key); ~Dev (value).



You can use the tag or key ID, by adding a '.' (period) before the ID. Examples: .4568~Prod (Tag key ID:'4568', value 'Prod'); Environment~.6985 (Tag key: 'Environment', value ID:'6985').


Responses

Request example

Response body model examples and descriptions

When result detalization level is 0

[
  {
    "check_id": 12345,
    "timestamp_utc": "2026-05-13T02:24:07",
    "severity": "E",
    "value": 23454,
    "unit": "byte"
  },
  {
    "check_id": 12345,
    "timestamp_utc": "2026-05-13T02:24:07",
    "severity": "I",
    "value": 1234,
    "unit": "ms"
  },
  {
    "check_id": 12345,
    "timestamp_utc": "2026-05-13T02:24:07",
    "severity": "W",
    "value": 23454,
    "unit": "ms"
  }
]
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, 1 url, 142/0 sent/received bytes.",
    "identifier": "ad5c4f14-0a44-4e98-b143-656bdc293820",
    "attempts": 2,
    "result_code": 340,
    "check_id": 12345,
    "timestamp_utc": "2026-05-13T02:24:07",
    "severity": "F",
    "value": 1234,
    "unit": "ms"
  },
  {
    "message": "1 step, 1 page, 1 url, 142/0 sent/received bytes.",
    "identifier": "4e542abf-eca3-49af-bc46-c32d17391aab",
    "attempts": 1,
    "result_code": 0,
    "check_id": 12345,
    "timestamp_utc": "2026-05-13T02:24:07",
    "severity": "E",
    "value": 1234,
    "unit": "byte"
  },
  {
    "message": "1 step, 1 page, 1 url, 142/0 sent/received bytes.",
    "identifier": "99dac475-adb8-4406-a3b7-70e168d115f6",
    "attempts": 3,
    "result_code": 340,
    "check_id": 12345,
    "timestamp_utc": "2026-05-13T02:24:07",
    "severity": "F",
    "value": 23454,
    "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.