JavaScript
npm install @a21e/sdk
import { A21e } from "@a21e/sdk";
const client = new A21e({ apiKey: "a21e_..." });
const result = await client.execute({
intent: "Write a landing page headline",
context: { audience: "SaaS CTOs" },
});API reference, SDK quickstarts for six languages, integration guides, and everything you need to ship with the a21e execution platform.
Quickstart
npm install @a21e/sdk
import { A21e } from "@a21e/sdk";
const client = new A21e({ apiKey: "a21e_..." });
const result = await client.execute({
intent: "Write a landing page headline",
context: { audience: "SaaS CTOs" },
});pip install a21e
from a21e import A21e
client = A21e(api_key="a21e_...")
result = client.execute(
intent="Write a landing page headline",
context={"audience": "SaaS CTOs"},
)curl -X POST https://api.a21e.com/v1/execute \
-H "Authorization: Bearer a21e_..." \
-H "Content-Type: application/json" \
-d '{"intent": "Write a landing page headline"}'API reference
Run tasks with intent analysis, routing, memory, and quality gates.
Create, read, update, and delete memory entries across six memory types.
Trigger autonomous agents for code, tests, security, CI, and docs.
Multi-model consensus with Condorcet/Schulze voting and pairwise matrices.
Install, invoke, and manage sandboxed skill extensions.
Team management, provider controls, credit caps, and usage analytics.
Integrations
IntelliSense, inline execution, and output preview — without leaving your editor.
Device authorization flow. Run tasks from your terminal. Pipe output to downstream tools.
Model Context Protocol integration for any compatible coding assistant.
Point your existing OpenAI SDK code at a21e by changing one URL. Same format, plus routing and memory.
Receive execution results via HTTP callback. Configure per-workspace delivery endpoints.
Autonomous agents open PRs, fix CI failures, and generate code reviews directly in your repos.
$5 gets you full API access, all 15 agents, and quality gates on every execution.