Garmingo Docs
Monitors

List Monitors

The List Monitors endpoint allows you to retrieve a list of all Monitors in your Garmingo Status instance.

GET
/monitors
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/monitors?limit=1&page=1"
{
  "data": {
    "count": 0,
    "monitors": [
      {
        "id": "string",
        "ttl": 10,
        "type": "http",
        "region": "us-east",
        "enabled": true,
        "retries": 5,
        "keywords": [
          "string"
        ],
        "metadata": {},
        "settings": {},
        "lastCheck": "string",
        "proxyHost": "string",
        "proxyPort": 0,
        "proxyType": "http",
        "displayName": "string",
        "currentStatus": true,
        "proxyPassword": "string",
        "proxyUsername": "string"
      }
    ]
  },
  "success": true
}
{
  "message": "string",
  "success": false
}