Uptimeify Docs
Monitoring locations

List Countries with Locations

Returns countries that have monitoring locations with active workers. Requires authentication.

GET /api/monitoring-locations/countries

Example (cURL)

curl -X GET "$BASE_URL/api/monitoring-locations/countries" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Accept: application/json"

Response

{
  "countries": [
    { "code": "DE", "locations": 2, "workers": 5 },
    { "code": "FR", "locations": 1, "workers": 2 },
    { "code": "NL", "locations": 1, "workers": 2 },
    { "code": "UK", "locations": 1, "workers": 2 },
    { "code": "FI", "locations": 1, "workers": 1 }
  ]
}

On this page