Documentation
Build with SIMBA
Everything you need to ship voice agents in production — reference, SDKs, and model catalog.
API Reference
REST endpoints for agents, conversations, voices, tools, and webhooks.
Libraries & SDKs
Official client libraries for Node.js, Python, Go, and more.
Browse Models
Voice, speech-to-text, and language models available on the platform.
Get an API Key
Create and manage API keys in the developers dashboard.
Quickstart
Create an agent in under five minutes. Install the SDK, create an API key, and make your first call.
npm install @simba/voice-agents
import { SimbaClient } from "@simba/voice-agents";
const simba = new SimbaClient();
const agent = await simba.agents.create({
name: "My first agent",
conversationConfig: {
agent: { prompt: { prompt: "You are a helpful assistant." } },
},
});