Integrations

Connect n8n

Use the Everguardly community node to trigger n8n workflows on monitor events and read your data.

Updated 2026-05-31 · 1 min read

The Everguardly community node lets n8n start workflows on monitoring events and read your monitors and incidents — on n8n Cloud or self-hosted.

Nodes

  • Everguardly Trigger — starts a workflow on an event (monitor down/up, certificate or domain expiring, incident opened/resolved).
  • Everguardly — an action node to list monitors or incidents.

1. Install the node

In n8n open Settings → Community nodes and install the n8n-nodes-everguardly package. Self-hosted instances may need community nodes enabled first.

2. Add your credential

  1. Create an API key in Settings → API keys.
  2. In n8n, create an "Everguardly API" credential and paste the key.
  3. Leave the Base URL as the production URL, or point it at your self-hosted instance.

How the trigger works

The trigger node registers your n8n webhook with Everguardly when you activate the workflow and removes it when you deactivate. Events are delivered the instant they fire — no polling. A reading action returns the standard REST response:

// GET /api/v1/monitors (via the action node)
{
  "data": {
    "monitors": [
      { "id": "…", "name": "Acme Marketing Site", "status": "up", "uptime24h": 100 }
    ],
    "total": 1
  }
}

Related

See Connect Zapier, Connect Make.com, or Connect IFTTT for the other platforms.

Need something this doesn't cover? Email hello@everguardly.com — we'll write the doc.