Post an overnight ranking + link standup to Slack.
Before the team logs on, summarises each client’s rank movement and new backlinks into a single threaded Slack message.
/v1/rank/v1/backlinks/newAbout this workflow
Before the team logs on, summarises each client’s rank movement and new backlinks into a single threaded Slack message. It's a n8n workflow built for agency reporting, wiring the RankParse API into Slack. Pricing is usage-based — about 12 credits / client — with no subscription or per-seat fees.
How it works
- 1
Trigger
Runs on an n8n schedule trigger or an incoming webhook, budgeted at ~12 credits / client.
- 2
Pull RankParse data
Call /v1/rank and /v1/backlinks/new for the domains or keywords you track.
- 3
Process
Roll the metrics up per client and render a clean, branded summary. Built around Slack.
- 4
Deliver
Push the result to Slack.
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/rank and /v1/backlinks/new.
- 3.Connect Slack.
- 4.Set your client domain list and a schedule, then run it.
Starter config
A base to adapt — wire it into your n8n workflow and fill in your inputs.
{
"name": "Post an overnight ranking + link standup to Slack",
"platform": "n8n",
"category": "Agency reporting",
"rankparse": {
"baseUrl": "https://api.rankparse.com",
"auth": "X-API-Key",
"endpoints": [
"/v1/rank",
"/v1/backlinks/new"
]
},
"connects": [
"Slack"
],
"schedule": "0 9 * * *",
"estimatedCredits": "~12 credits / client"
}