Back to Home
Talkrix Docs
API v1.0

Getting Started

Build intelligent voice agents in minutes. Talkrix provides everything you need to create, deploy, and scale AI-powered voice experiences.

Sub-100ms Latency

Real-time voice interactions with minimal delay

50+ Languages

Multilingual support out of the box

Fine-Tuned AI Models

Advanced reasoning and natural conversations

Enterprise Security

SOC2 Type II, HIPAA compliant

Quick Start

1. Get your API Key

Sign up at app.talkrix.com and get your API key from the dashboard.

2. Create your first agent

curl -X POST https://api.voice.talkrix.com/agents \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Sales Assistant",
    "systemPrompt": "You are a helpful sales assistant. Be friendly and professional.",
    "voice": "en-US-Neural-Female",
    "language": "en",
    "maxDuration": "600s"
  }'

3. Make a test call

curl -X POST https://api.voice.talkrix.com/agents/{agentId}/call \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "callType": "test",
    "customerName": "Test User"
  }'

🎉 You're ready!

Your AI agent is now live. Use the returned joinUrl to test the voice call in your browser.