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.

Quick start

Every request is a single POST to /chat, authenticated with two headers and answered synchronously as JSON.

cURL · POST /chat
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?" }]
  }'