Documentation
Klart AI Documentation
Everything you need to understand how Klart AI works, and to call it directly from your own product, script, or backend.
Klart AI deploys AI employees — agents grounded in your company’s own data — across chat, email, and the tools your team already uses. Most teams run Klart AI through the dashboard, but every agent can also be reached directly over HTTP, so you can bring the same governed, source-grounded answers into your own applications.
How Klart AI Works
The concepts behind agents, Klart Brain, and governance — useful context before you integrate.
Getting Started
Get your credentials and make your first API call in a few minutes.
Authentication
How the x-api-key and Klart-Team-Id headers work, and where to find them.
API Reference
Full request and response schema for the chat endpoint, plus an interactive request builder.
Quick start
Every request is a single POST to /chat, authenticated with two headers and answered synchronously as JSON.
curl -X POST "https://prod.klartprompts.com/api/chat" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-H "Klart-Team-Id: YOUR_TEAM_ID" \
-d '{
"mention": "sales-assistant",
"messages": [{ "role": "user", "content": "How can I take some days off?" }]
}'