— Documentation
Build, integrate, and ship with confidence.
Everything you need to deploy RMC AI agents and platforms — quickstarts, API references, playbooks, and security docs.
Getting Started
Spin up your first AI agent in under 30 minutes.
AI Agents
Configure, deploy, and observe production AI agents.
Integrations
Connect to the systems you already run on.
API Reference
REST + WebSocket endpoints, fully typed.
Playbooks
Battle-tested patterns from real deployments.
Security & Compliance
Data handling, residency, and audit logs.
— Quickstart
Deploy your first agent in 5 lines.
The RMC SDK handles transport, telephony, memory, and observability. You write business logic.
Get API Accessquickstart.ts
import { RMC } from "@rmc/sdk";
const agent = new RMC.AIAgent({
name: "support-bot",
voice: "natural-en",
channels: ["voice", "whatsapp"],
tools: [crm.lookup, crm.update],
});
await agent.deploy();