Quickstart
Key → agent → call → webhook. Five minutes, one real phone call.
API overview
Two resources, one auth header, one error envelope.
Billing
What a minute costs, and what is and is not billable.
Roadmap
What is shipping, and when.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
AI voice agents that make real phone calls — ₹1 a minute, on our own infrastructure in India.
pip install --extra-index-url https://sandbox.voice.miraiminds.co/pypi/simple mirai-voice
from mirai import Mirai
mirai = Mirai() # reads MIRAI_API_KEY
agent = mirai.agents.create(
name="Order confirmation",
system_prompt="You are आशु from Acme. Confirm the order and ask whether the delivery address is unchanged.",
first_message="नमस्ते, मैं Acme से आशु बोल रहा हूं।",
voice_id="ashu",
language="hi",
)
call = mirai.calls.create(agent_id=agent.id, to="+919876543210")
print(mirai.calls.wait(call.id).status) # 'completed'