Find guest-post targets in your niche and draft the pitch.
Surfaces referring domains that link to peers but not you, checks each page for an author byline, then drafts a tailored pitch.
/v1/referring_domains/v1/page_auditAbout this workflow
Surfaces referring domains that link to peers but not you, checks each page for an author byline, then drafts a tailored pitch. It's a n8n workflow built for outreach automation, wiring the RankParse API into Gmail and OpenAI. Pricing is usage-based — about 18 credits / run — with no subscription or per-seat fees.
How it works
- 1
Trigger
Runs on an n8n schedule trigger or an incoming webhook.
- 2
Pull RankParse data
Call /v1/referring_domains and /v1/page_audit for the domains or keywords you track.
- 3
Process
Filter for the highest-value targets and prepare a personalized, ready-to-send touch.
- 4
Deliver
Push the result to Gmail and OpenAI.
Set it up
- 1.Import the starter config below into n8n.
- 2.Add your RankParse API key as an X-API-Key header credential.
- 3.Connect Gmail and OpenAI.
- 4.Set your domains or keywords and a schedule, then run it.
Starter config
A base to adapt — wire it into your n8n workflow and fill in your inputs.
{
"name": "Find guest-post targets in your niche and draft the pitch",
"platform": "n8n",
"category": "Outreach automation",
"rankparse": {
"baseUrl": "https://api.rankparse.com",
"auth": "X-API-Key",
"endpoints": [
"/v1/referring_domains",
"/v1/page_audit"
]
},
"connects": [
"Gmail",
"OpenAI"
],
"schedule": "0 9 * * *",
"estimatedCredits": "~18 credits / run"
}