Expand a seed keyword into a scored opportunity list.
Takes one seed term, pulls related queries and their SERP difficulty, scores each by volume ÷ competition, and writes to Airtable.
/v1/keywords/v1/serpAbout this workflow
Takes one seed term, pulls related queries and their SERP difficulty, scores each by volume ÷ competition, and writes to Airtable. Built on Make.com for keyword research, piping the RankParse API into Airtable. No subscription and no per-seat pricing — just about 16 credits / run in RankParse credits.
How it works
- 1
Trigger
Starts from a scheduled Make scenario (or an app trigger), budgeted at ~16 credits / run.
- 2
Pull RankParse data
Call /v1/keywords and /v1/serp for the domains or keywords you track.
- 3
Process
Expand, score, and cluster the terms into an actionable opportunity list. Built around Airtable.
- 4
Deliver
Push the result to Airtable.
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/keywords and /v1/serp.
- 3.Connect Airtable.
- 4.Fill in your seed keyword(s), set a run schedule, and you're live.
Starter config
A base to adapt — wire it into your Make.com workflow and fill in your inputs.
{
"name": "Expand a seed keyword into a scored opportunity list",
"platform": "Make",
"category": "Keyword research",
"rankparse": {
"baseUrl": "https://api.rankparse.com",
"auth": "X-API-Key",
"endpoints": [
"/v1/keywords",
"/v1/serp"
]
},
"connects": [
"Airtable"
],
"schedule": "0 9 * * *",
"estimatedCredits": "~16 credits / run"
}