GET
/
monitors
/
{id}
/
history
curl --request GET \
  --url https://api.axiom.co/v2/monitors/{id}/history \
  --header 'Authorization: Bearer <token>'
[
  {
    "checkId": "chk_abc123",
    "name": "High CPU Usage Alert",
    "state": "open",
    "timestamp": "2024-03-20T15:30:00Z"
  }
]

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
string
required

Query Parameters

startTime
string
required

Start time (ISO 8601 format) for filtering alert history.

endTime
string
required

End time (ISO 8601 format) for filtering alert history.

Response

200 - application/json
AlertHistory

The response is of type object[].