> ## Documentation Index
> Fetch the complete documentation index at: https://docs.miraiminds.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Mirai Voice

> AI voice agents that make real phone calls — ₹1 a minute, on our own infrastructure in India.

Give an agent a script and a number, and it makes the call. Hindi, English, and
the Hinglish most real calls actually are — on GPUs, models and SIP lines we
own, in India, at **₹1 a minute**.

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/v2/quickstart">
    Key → agent → call → webhook. Five minutes, one real phone call.
  </Card>

  <Card title="API overview" icon="code" href="/v2/overview">
    Two resources, one auth header, one error envelope.
  </Card>

  <Card title="Billing" icon="indian-rupee-sign" href="/general/tiers">
    What a minute costs, and what is and is not billable.
  </Card>

  <Card title="Roadmap" icon="map" href="/general/roadmap">
    What is shipping, and when.
  </Card>
</CardGroup>

## Get a key

Create one yourself in the [console](https://sandbox.voice.miraiminds.co) under
**Developers**. It is shown once, and you can rotate or revoke from the same
page.

```bash theme={null}
pip install --extra-index-url https://sandbox.voice.miraiminds.co/pypi/simple mirai-voice
```

```python theme={null}
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'
```

Prefer plain HTTP? Every page here carries the same thing in cURL, Python and
Node. Start with the [Quickstart](/v2/quickstart).
