v1

latestOpenAPI 3.0.02026-08-0650184174.6 KB
Summary.hoursofday

Returns the average response time for each hour.

Returns the average response time for each hour of the day (0-23) for a specific check over a selected time period. I.e. it shows you what an average day looks like during that time period.

get/summary.hoursofday/{checkid}

Path parameters

checkidinteger required

Query parameters

frominteger

Start time of period. Format is UNIX timestamp. Default value is one week eariler than to.

tointeger

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

probesstring

Filter to only use results from a list of probes. Format is a comma separated list of probe identifiers. By default all probes results are returned.

uselocaltimeboolean

If true, use the user's local time zone for results (from and to parameters should still be specified in UTC). If false, use UTC for results.

Response

Successful HTTP Response

Example response

{
  "hoursofday": [
    {
      "hour": 1,
      "avgresponse": 299
    }
  ]
}