For LLMs
AI Integration Hub
Korven One is designed to be read by humans and by AI coding agents. Everything an LLM needs to integrate the API is on this page.
LLM-ready docs
Every doc page is available as raw Markdown at /docs/<slug>.md and as a single concatenated bundle at /llms.txt and /llms-full.txt. Point your agent at these URLs — no scraping required.
/llms.txt— table of contents and section links./llms-full.txt— full concatenated docs (payments, webhooks, errors, SDKs).- Every code block declares its language so agents can extract by language.
- Every endpoint page includes request, response and error examples.
Prompt examples
API v1
Read https://korvenone.com/llms-full.txt then implement a
Next.js checkout page that creates a Korven One payment,
redirects to the hosted checkout, and handles the
payment.succeeded webhook with signature verification.Best practices
- Always send an Idempotency-Key on writes; regenerate on user-visible retries only.
- Log request_id from every non-2xx response.
- Verify webhook signatures with the current secret; support the previous secret during rotation.
- Prefer official SDKs over hand-rolled fetch calls — they handle retries, pagination and versioning.
