Auto-build a monthly backlink report for every client.
Pulls backlink counts and DA history per client, renders a branded Google Doc, exports to PDF, and emails it on the 1st.
/v1/backlinks/v1/domainAbout this workflow
Pulls backlink counts and DA history per client, renders a branded Google Doc, exports to PDF, and emails it on the 1st. It's a Make.com workflow built for agency reporting, wiring the RankParse API into Google Docs and Gmail. Pricing is usage-based — about 30 credits / client — with no subscription or per-seat fees.
How it works
- 1
Trigger
Starts from a scheduled Make scenario (or an app trigger).
- 2
Pull RankParse data
Call /v1/backlinks and /v1/domain for the domains or keywords you track.
- 3
Process
Roll the metrics up per client and render a clean, branded summary.
- 4
Deliver
Push the result to Google Docs and Gmail.
Set it up
- 1.Import the starter config below into Make.com.
- 2.Add your RankParse API key as an X-API-Key header credential.
- 3.Connect Google Docs and Gmail.
- 4.Set your domains or keywords and a schedule, then run it.
Starter config
A base to adapt — wire it into your Make.com workflow and fill in your inputs.
{
"name": "Auto-build a monthly backlink report for every client",
"platform": "Make",
"category": "Agency reporting",
"rankparse": {
"baseUrl": "https://api.rankparse.com",
"auth": "X-API-Key",
"endpoints": [
"/v1/backlinks",
"/v1/domain"
]
},
"connects": [
"Google Docs",
"Gmail"
],
"schedule": "0 9 * * *",
"estimatedCredits": "~30 credits / client"
}