Uptimeify Docs

Öffentliche Monitoring-Standorte auflisten

Öffentlicher Endpunkt (keine Authentifizierung erforderlich), der alle Monitoring-Standorte mit aktiven Workern zurückgibt. Geeignet für Landingpages und Marketing.

GET /api/public/monitoring-locations

Beispiel (cURL)

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

Antwort (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 }
  ]
}

Auf dieser Seite