Basic
This API allows you to initiate outbound phone calls from a specified Millis AI voice agent to any given phone number.Prerequisites
Obtain your API key from your Millis AI Account.API Details
- Method: POST
- URL:
- Headers:
- Body:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Trigger an outbound call to a specific number
https://api-west.millis.ai/start_outbound_call
Content-Type: application/json
Authorization: YOUR_API_KEY
{
"from_phone": "one of your agent's phone number",
"to_phone": "receiver's phone number",
"metadata": {
key: value
}, // Optional: any extra data to attach to the session
include_metadata_in_prompt: true/false // Optional: option to include the metadata in the agent's system prompt
}

curl -X POST https://api-west.millis.ai:8080/start_outbound_call \
-H "Content-Type: application/json" \
-H "Authorization: YOUR_API_KEY" \
-d '{"from_phone": "+1234567890", "to_phone": "+1987654321"}'