KDP Intelligence
Kindle niche demand and competition scores via API
Query keyword-level demand scores, monthly search volume and availability for Kindle Direct Publishing niches. The preview and check endpoints are keyless and free, while deeper competition and revenue data unlocks through x402 USDC micropayments. It runs as a FastAPI service with an OpenAPI spec.
GET https://kdp-intelligence-api.vercel.app/v1/preview/coloring%20book
{
"keyword": "coloring books for adults",
"demand_score": 87.3,
"monthly_searches": 60500,
"available": true,
"full_data_cost_usdc": 0.1,
"full_data_url": "https://nichedata.dev/v1/niche/coloring+books+for+adults",
"api_version": "0.1.0"
}curl "https://kdp-intelligence-api.vercel.app/v1/preview/coloring%20book"const res = await fetch("https://kdp-intelligence-api.vercel.app/v1/preview/coloring%20book");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://kdp-intelligence-api.vercel.app/v1/preview/coloring%20book")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/v1/preview/coloring%20bookPROBEDKindle niche demand and competition scores via API
/v1V1 — documented GET route.
/v1/1V1 details by ID (example: 1).
/v1?limit=10V1 — documented GET route.
/v1/search?q=testSearch by query parameters.
/v1/V1 — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
KDP Intelligence: common questions
Is KDP Intelligence free to use?
Yes — KDP Intelligence is a free books & words API. Free tier: Free preview/check endpoints; full niche data is paid via x402 USDC. Whether the free tier allows commercial use is unclear — check the provider docs.
Does KDP Intelligence need an API key?
No — KDP Intelligence needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call KDP Intelligence from the browser?
Not directly — KDP Intelligence doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is KDP Intelligence up right now?
As of our last scheduled check, KDP Intelligence is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.