uptime
Get all uptime check history
Returns a list of uptime check history results for a given id, detailing the runs performed on the StatusCake testing infrastruture.
The returned results are a paginated series. Alongside the response data is a links object referencing the current response document, self, and the next page in the series, next.
get/uptime/{test_id}/history
Path parameters
test_idstring required
Uptime check ID
Query parameters
limitinteger
The number of results to return per page
beforeinteger
Only results created before this UNIX timestamp will be returned
afterinteger
Only results created after this UNIX timestamp will be returned
Response
OK
Example response
{
"data": [
{
"created_at": "2017-11-04T11:58:23+00:00",
"location": "UKCON2",
"performance": 579,
"status_code": 200
}
],
"links": {
"self": "https://api.statuscake.com/v1/uptime/1/history?before=1509796803",
"next": "https://api.statuscake.com/v1/uptime/1/history?before=1509796703"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.