Telescope
Monitors

Get check history

Retrieve the check history for a specific monitor.

GET
/api/monitors/{id}/checks
Authorization<token>

API key with appropriate scopes. Pass as Bearer <key>.

In: header

Path Parameters

id*string

Monitor ID

Response Body

application/json

curl -X GET "https://api.telescopealerts.com/api/monitors/string/checks"
{
  "success": true,
  "data": [
    {
      "id": "string",
      "monitor_id": "string",
      "status": "up",
      "response_time": 0,
      "status_code": 0,
      "created_at": "2019-08-24T14:15:22Z"
    }
  ]
}