Build a Google-ready disavow file from your spam profile.
Pulls every backlink, scores each domain for spam signals, and assembles a formatted disavow.txt saved straight to Google Drive.
/v1/backlinksAbout this workflow
Pulls every backlink, scores each domain for spam signals, and assembles a formatted disavow.txt saved straight to Google Drive. It's a Make.com workflow built for backlink auditing, wiring the RankParse API into Google Drive. Pricing is usage-based — about 10 credits / run — with no subscription or per-seat fees.
How it works
- 1
Trigger
Starts from a scheduled Make scenario (or an app trigger), budgeted at ~10 credits / run.
- 2
Pull RankParse data
Call /v1/backlinks for the domains or keywords you track.
- 3
Process
Diff the latest backlink profile and isolate the links that matter — new, lost, or low-quality. Built around Google Drive.
- 4
Deliver
Push the result to Google Drive.
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 — this template calls /v1/backlinks.
- 3.Connect Google Drive.
- 4.Set the domain(s) you want to monitor 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": "Build a Google-ready disavow file from your spam profile",
"platform": "Make",
"category": "Backlink auditing",
"rankparse": {
"baseUrl": "https://api.rankparse.com",
"auth": "X-API-Key",
"endpoints": [
"/v1/backlinks"
]
},
"connects": [
"Google Drive"
],
"schedule": "0 9 * * *",
"estimatedCredits": "~10 credits / run"
}