Uptimeify Docs
Monitoring locations

List Public Monitoring Locations

Public endpoint (no authentication required) that returns all monitoring locations with active workers. Suitable for landing pages and marketing.

GET /api/public/monitoring-locations

Example (cURL)

curl -X GET "https://uptimeify.io/api/public/monitoring-locations" \
  -H "Accept: application/json"

Response

{
  "locations": [
    { "id": 1, "code": "de-nbg", "name": "Nuremberg", "countryCode": "DE", "activeWorkers": 3 },
    { "id": 2, "code": "de-fsn", "name": "Falkenstein", "countryCode": "DE", "activeWorkers": 2 },
    { "id": 3, "code": "fr-par", "name": "Paris", "countryCode": "FR", "activeWorkers": 2 },
    { "id": 4, "code": "nl-ams", "name": "Amsterdam", "countryCode": "NL", "activeWorkers": 2 },
    { "id": 5, "code": "uk-lon", "name": "London", "countryCode": "UK", "activeWorkers": 2 },
    { "id": 6, "code": "fi-hel", "name": "Helsinki", "countryCode": "FI", "activeWorkers": 1 }
  ]
}

On this page