Developer Documentation

AuraVoice One
Developer Hub

Everything you need to build, deploy, and scale AI Voice agents on our infrastructure.

All systems operational
View Status Page →

Quick Start

Make your first call in 3 lines

The AuraVoice One API is REST-based and designed for speed. Authenticate, define your persona, send the request. Your AI calls the number.

Full API Reference
// Initiate a call with 1 API request
POST https://api.auravoiceone.cloud/v1/calls
Authorization: Bearer YOUR_API_KEY
{
"to": "+212612345678",
"persona_id": "sara_darija_v2",
"language": "dar",
"webhook_url": "https://yourapp.com/hooks"
}
// Response
{
"call_id": "call_9xKj2mN",
"status": "queued"
}