GET   checks/{checkId}/results/{millisecondsUtc}?detail_level={detail_level}

Gets a specific check result by a numeric java timestamp.

URL Parameters

NameDescription
checkId

Check identifier. Type: numeric.

millisecondsUtc

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

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-13T03:44:04",
  "severity": "E",
  "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, 19 urls, 3990/482261 sent/received bytes",
  "identifier": "83357089-be3b-4c7b-81a6-3f79d6b7c94a",
  "attempts": 2,
  "result_code": 340,
  "check_id": 12345,
  "timestamp_utc": "2026-05-13T03:44:04",
  "severity": "W",
  "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.