Skip to main content

List Monitors

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

EndpointMethodURL
/monitorsGEThttps://garmingo.com/api/status/v1/monitors

Query Parameters​

ParameterTypeDescriptionRequiredDefaultMinimumMaximum
limitnumberThe maximum number of Monitors to return.No101100
pagenumberThe page number of the Monitors to return.No11∞

Response​

The response is a JSON object with the following properties:

PropertyTypeDescription
successbooleanWhether the request was successful.
data.monitorsMonitor[]The list of Monitors.
data.countnumberThe total number of Monitors.

Example​

{
"success": true,
"data": {
"monitors": [
{
"id": "5f4b3b3b-0b3b-4b3b-0b3b-4b3b0b3b0b3b",
"displayName": "My Monitor",
"ttl": 60,
"type": "http",
"region": "eu-central",
"enabled": true,
"retries": 3,
"keywords": ["my", "monitor"],
"metadata": {
"key": "value"
},
"settings": {
"url": "https://example.com",
"method": "GET",
"headers": {
"Authorization": "Bearer my-token"
},
"body": null
},
"lastCheck": "2021-01-01T00:00:00.000Z",
"proxyType": "socks5",
"proxyHost": "proxy.example.com",
"proxyPort": 8080,
"proxyUsername": "my-username",
"proxyPassword": "my-password",
"currentStatus": true
}
],
"count": 1
}
}