Documentation Index
Fetch the complete documentation index at: https://docs.keplerinsights.us/llms.txt
Use this file to discover all available pages before exploring further.
Week of 2026-05-12
New
- Public API launch. The Kepler Insights scoring API is now generally available. Pick up an
ki_live_key in the developer console and start with the Quickstart. - Sandbox environment. Build and test against four canned test domains using
ki_test_keys — no fetcher cost, no quota burn. See Sandbox. - Five public tiers. Free (14-day trial), Starter, Growth, Scale, and Enterprise, each with their own cached + cold call budgets and freshness windows. See Tiers & limits.
Updates
- Cold scoring is now always async on every paid tier. When
POST /v1/scoreneeds to run a cold pipeline, the API returns202 Acceptedwith ajob_idandpoll_url. PollGET /v1/jobs/{job_id}untilstatusiscomplete. The Python and TypeScript SDKs handle the polling loop for you. See Async scoring. - Sandbox responses are synchronous. Sandbox
POST /v1/scorecalls return the score inline as200 OK— sandbox does not queue jobs. See Sandbox. - Freshness windows finalized per tier: Starter 24h, Growth 6h, Scale 1h, Enterprise 15m. Cached responses within the window do not count against your cold budget.
- Cold-spend circuit breakers. Two automatic safety nets cap runaway cold usage: 200 cold calls/hour per key, and 2× your tier’s monthly cold budget per account in any 24h window. Both return
429with areasonfield.
Fixes
cache_statusno longer returns"cold". The field is now"cached"or"fresh"— the cold-result case is delivered through the async job flow instead. SeePOST /v1/score.- The cohort endpoint now returns
no_history(wastarget_not_found) when the target domain has never been scored. See Cohort. - Removed several error codes that the API never actually emits, including
400 async_requires_growthand the spurious502/504rows. See Errors for the current, accurate list. - The
waitrequest field is accepted for backwards-compatibility but has no effect — cold scoring always uses the async job flow.

