Skip to content

Developers

Built for the people who build

Clean APIs, typed SDKs, and documentation that respects your time. Start in minutes, scale without surprises.

Quick start

Your first grounded answer in five lines

Install the SDK, add your key, and query a knowledge base. The platform handles retrieval, routing, and citations.

1npm install @krutakam/sdk

2Create an API key in the dashboard

3Query, and ship

quickstart.ts
import { Krutakam } from "@krutakam/sdk";

const client = new Krutakam({ apiKey: process.env.KRUTAKAM_API_KEY });

// Ground an answer in your own knowledge base
const answer = await client.rag.query({
  knowledgeBase: "product-docs",
  question: "How does model routing choose a model?",
});

console.log(answer.text, answer.citations);

Resources

Everything you need to ship

Documentation

Guides and reference for every platform capability, written by the people who build it.

SDKs

Typed SDKs for TypeScript and Python, with more languages on the way.

REST APIs

Predictable, versioned REST APIs for every capability — vision to embeddings.

Authentication

API keys for getting started, OAuth and workload identity for production.

GitHub

Open-source tools, examples, and evaluation harnesses. Repository links coming soon.

API Explorer

Try every endpoint from the browser with live requests and responses.