v1

latestOpenAPI 3.0.02026-08-0650184174.6 KB
Results

Return a list of raw test results

Return a list of raw test results for a specified check

get/results/{checkid}

Path parameters

checkidinteger required

Query parameters

tointeger

End of period. Format is UNIX timestamp. Default value is current timestamp.

frominteger

Start of period. Format is UNIX timestamp. Default value is 1 day prior to to.

probesstring

Default: all probes

Filter to only show results from a list of probes. Format is a comma separated list of probe identifiers

statusstring

Default: all statuses

Filter to only show results with specified statuses. Format is a comma separated list of (down, up, unconfirmed, unknown)

limitinteger

Number of results to show (Will be set to 1000 if the provided value is greater than 1000)

offsetinteger

Number of results to skip (Max value is 43200)

includeanalysisboolean

Attach available root cause analysis identifiers to corresponding results

maxresponseinteger

Maximum response time (ms). If set, specified interval must not be larger than 31 days.

minresponseinteger

Minimum response time (ms). If set, specified interval must not be larger than 31 days.

Response

Successful HTTP Response

activeprobesnumber[]

For your convenience, a list of used probes that produced the showed results

Example response

{
  "results": [
    {
      "probeid": 33,
      "time": 1294235764,
      "status": "up",
      "responsetime": 91,
      "statusdesc": "OK",
      "statusdesclong": "OK"
    }
  ],
  "activeprobes": [
    33
  ]
}