KeylessAI
LoginStart Free
Quickstart

Your first governed action in 5 minutes

Try it in the browser first. Then copy-paste the code. Then install the SDK. The fastest path to understanding KeylessAI.

Open DemoInstall SDK
KeylessAI signal
Zero
key exposure to autonomous agents
Scoped
execution with policy and budget guardrails
Full
audit trace from intent to external impact
Recommended

1. Try it in your browser

No install required

Open the demo playground, pick an action, simulate it, then execute it. Everything is governed and logged automatically.

See the full trace

After execution, inspect the intent, policy check, execution record, and audit trail — all from the browser.

Open Demo Playground
Step 2

2. Run your first governed action

Minimal code example

fetch("https://app.keyless-ai.com/api/execute", { method: "POST", headers: { "Content-Type": "application/json", "Authorization": "Bearer YOUR_TOKEN" }, body: JSON.stringify({ action: "payment.charge", amount: 500, target: { customer: "cust_123" } }) })

What happens

Your action is validated by policy, checked against budget, executed, and recorded in the ledger — automatically.

Step 3

3. Install the SDK

npm install

npm install @keylessai/sdk

Initialize

import { KeylessAI } from "@keylessai/sdk"; const kai = new KeylessAI({ projectId: "YOUR_PROJECT_ID" });

Execute

const result = await kai.execute({ action: "payment.charge", amount: 500 });

Step 4

4. Advanced API usage

Policy evaluation

POST /api/policies/evaluate — check policies before executing

Approval workflows

POST /api/approvals — request human or policy approval for high-risk actions

Simulation

POST /api/simulate — preview what would happen without executing

Audit trail

GET /api/audit — full trace of every governed action

Start from the browser

KeylessAI is easiest to understand when you try it first, then read the docs.

Open DemoRead API docs