Keywords
Classic keyword data for a seed term, search volume, CPC, competition, and related ideas. Flat per call.
Overview
Monthly search volume, CPC, competition, and (with ideas: true) LLM-curated related keyword ideas for a seed term. This is a classic-SEO data endpoint, not a multi-model AI-search fan-out, so it is billed a flat per-call rate rather than per model.
Reference
POST
/v1/keywords$0.19 · flat per call
Parameters
seedrequired | string | Seed keyword to fetch search volume, CPC, and competition for. |
countryoptional | string | ISO-2 country code for localized metrics. Defaults to "us". Default: "us". |
ideasoptional | boolean | Leave false for volume, CPC, and competition on the seed only. Set true only when related, alternative, or long-tail keyword ideas are requested. Default: false. |
Request
curl https://www.cite42.dev/api/v1/keywords \
-X POST \
-H "Authorization: Bearer $CITE42_API_KEY" \
-H "Content-Type: application/json" \
-d '{"seed":"ai blog tool","ideas":true}'Response
{
"keyword": "ai blog tool",
"volume": 4400,
"cpc": 3.12,
"competition": 0.41,
"competitionLevel": "MEDIUM",
"ideas": [
{
"keyword": "ai blog generator",
"volume": 8100,
"cpc": 2.84,
"competition": 0.38,
"competitionLevel": "MEDIUM"
}
],
"requestId": "…",
"billing": {
"cost": {
"microCredits": 19000,
"usd": "0.19"
},
"balance": {
"microCredits": 1336000,
"usd": "13.36"
}
}
}