KlickKB API quickstart
KlickKB is Kariant’s business LLM. Issue an API key in the console and call it from any backend.
Issue a keylink
- 1Go to klick.kariant.app/kb/api-keys and create a key.
- 2Copy the secret immediately — it is shown once; only its SHA-256 hash is stored.
- 3Keys activate automatically within moments of creation.
Call the APIlink
POST your prompt with the key as a bearer token:
bash
curl -X POST https://klick.kariant.app/api/kb/generate \
-H "Authorization: Bearer kkb_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"klick-kb","prompt":"Summarize our Q2 pipeline risks"}'Models & serving honestylink
Models: klick-kb (default), klick-kb-fast, klick-kb-pro, klick-kb-edge. Responses currently serve from the Gemma-4 base checkpoints and say so (servedBy: "base-checkpoint"); the tuned KlickKB LoRA weights swap in transparently when they land.
Usage meters in Koins against the key owner’s wallet and appears in the KB usage console.
Frequently asked questions
I lost my key secret — can I recover it?expand_more
No. Only the hash is stored. Revoke the key and issue a new one.
Can I call it from a browser?expand_more
The endpoint allows it, but treat keys like passwords — call from your backend so the key never ships to clients.