Garmingo Docs
Incidents

List Incidents

Paginated list endpoint returning incidents and total count.

GET
/incidents
x-garmingo-status-key<token>

Your Garmingo Status API key. Can be generated at https://garmingo.com/s/settings

In: header

Query Parameters

limit?integer

Limit the number of results

Range1 <= value <= 100
page?integer

The page you want the results for. Since list calls use limits, pagination is required.

Range1 <= value

Response Body

curl -X GET "https://garmingo.com/api/status/v1/incidents?limit=1&page=1"
{
  "data": {
    "count": 100,
    "incidents": [
      {
        "id": "string",
        "end": "2021-02-01T00:00:00.000Z",
        "start": "2021-01-01T00:00:00.000Z",
        "title": "string",
        "status": "string",
        "eventIds": [
          "string"
        ],
        "metadata": {},
        "resolved": true,
        "monitorIds": [
          "string"
        ],
        "description": "This is an example of a description.",
        "resolveWhenOnline": true
      }
    ]
  },
  "success": true
}