Get pinged when a competitor gains a powerful link.
Watches a set of competitor domains and fires a Discord alert whenever one earns a new link from a DA 70+ referring domain.
/v1/referring_domainsAbout this workflow
Watches a set of competitor domains and fires a Discord alert whenever one earns a new link from a DA 70+ referring domain. A competitor monitoring workflow on n8n, connecting RankParse's data straight into Discord. You pay per credit — about 6 credits / run — never a flat monthly fee.
How it works
- 1
Trigger
Runs on an n8n schedule trigger or an incoming webhook, budgeted at ~6 credits / run.
- 2
Pull RankParse data
Call /v1/referring_domains for the domains or keywords you track.
- 3
Process
Watch the competitor set and surface only the changes that cross your thresholds. Built around Discord.
- 4
Deliver
Push the result to Discord.
Set it up
- 1.Import the starter config below into n8n.
- 2.Add your RankParse API key as an X-API-Key header credential — this template calls /v1/referring_domains.
- 3.Connect Discord.
- 4.Point it at the competitor domain set to watch, pick a schedule, and turn it on.
Starter config
A base to adapt — wire it into your n8n workflow and fill in your inputs.
{
"name": "Get pinged when a competitor gains a powerful link",
"platform": "n8n",
"category": "Competitor monitoring",
"rankparse": {
"baseUrl": "https://api.rankparse.com",
"auth": "X-API-Key",
"endpoints": [
"/v1/referring_domains"
]
},
"connects": [
"Discord"
],
"schedule": "0 9 * * *",
"estimatedCredits": "~6 credits / run"
}