Uptimeify Docs
Integrations

Firewall allowlisting (Monitoring node IPs)

If your website is protected by a firewall or WAF, you may need to allowlist our monitoring nodes so we can reach your endpoint reliably.

Dashboard (UI)

You can view the current IP allowlist in the dashboard sidebar under “IP Addresses”.

API (Automation)

To fetch the current list programmatically, use the authenticated endpoint:

  • GET /api/ips

Authentication

Use an API token generated in the dashboard.

BASE_URL="https://uptimeify.io"
TOKEN="wsm_<your-api-token>"

curl -H "Authorization: Bearer $TOKEN" "$BASE_URL/api/ips"

Response

{
  "ipv4": ["203.0.113.10"],
  "ipv6": ["2001:db8::10"],
  "locations": {
    "fra": ["203.0.113.10"]
  },
  "updated_at": "2026-01-01T00:00:00.000Z",
  "documentation": "https://uptimeify.io/docs/integrations/firewall"
}

Notes:

  • The IP list can change over time. Don’t hard-code it permanently.
  • Prefer periodic syncing on your side (e.g. via a scheduled job).

On this page