The CallMissed Voice API spins up a fully-configured voice agent in one POST. Use it standalone, or embed into your own product.
curl -X POST https://api.callmissed.com/v1/voice/agents \
-H "Authorization: Bearer cm_your_key" \
-H "Content-Type: application/json" \
-d '{
"name": "Acme inbound support",
"llm_model": "sarvam-m",
"stt_language": "hi-IN",
"tts_voice": "meera",
"system_prompt": "You are a support agent for Acme Electronics. Answer in the customer'\''s language. Use the order_lookup tool for order questions. Escalate if the customer is angry.",
"tools": [
{"name": "order_lookup", "endpoint": "https://api.acme.com/orders/lookup"},
{"name": "escalate_to_human", "endpoint": "https://api.acme.com/support/escalate"}
],
"telephony": {"provider": "twilio", "phone_number": "+91-80-4567-8900"}
}'
Create an inbound AI voice agent tied to your Twilio number.