Coming soon

Add AI Voice to
Your App in Minutes

Real-time voice conversations for any application. Connect your LLM, drop in our SDK, and you're live.

5 minute setupWorks with any LLMSimple per-minute pricing

Built for Developers

Voice infrastructure that works with your existing stack.

Works With Any LLM

Use OpenAI, Anthropic, or your own model. We handle voice, you handle the intelligence.

Simple Integration

One webhook receives transcripts, responds with text. That's the entire API.

How It Works

Two ways to integrate. Pick what fits your stack.

Bring your own AI

You control the AI. We handle voice infrastructure.

chans
Voice & transcription
Your Backend
Your LLM, your logic
You own this
chans
Text-to-speech
api/webhook/route.ts
// Your webhook endpoint
export async function POST(req: Request) {
const { transcript, sessionId } = await req.json()
// Use any LLM - OpenAI, Anthropic, your own
const response = await openai.chat.completions.create({
model: "gpt-4",
messages: [{ role: "user", content: transcript }]
})
return Response.json({
text: response.choices[0].message.content
})
}