Monitors
Search Monitors
Endpoint for searching and filtering monitors with pagination parameters.
x-garmingo-status-key<token>
Your Garmingo Status API key. Can be generated at https://garmingo.com/s/settings
In: header
Query Parameters
querystring
Search query
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/search?query=string&limit=1&page=1"
{
"data": {
"count": 12,
"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": "string"
}