Events
List Events
Paginated list of events for a monitor (status changes).
x-garmingo-status-key<token>
Your Garmingo Status API key. Can be generated at https://garmingo.com/s/settings
In: header
Path Parameters
idstring
Query Parameters
limit?integer
Limit the number of results
Range
1 <= value <= 100
page?integer
The page you want the results for. Since list calls use limits, pagination is required.
Range
1 <= value
Response Body
curl -X GET "https://garmingo.com/api/status/v1/monitors/string/events?limit=1&page=1"
{
"data": {
"count": 100,
"events": [
{
"id": "string",
"status": "string",
"metadata": {},
"monitorId": "string",
"timestamp": true
}
]
},
"success": true
}