1
Create an account
Sign up at aivaon.com/register. No credit card required for the free tier (100 minutes/month).
2
Get your API key
Navigate to Console → Settings → API Keys and generate a new key.
curl -X POST https://api.aivaon.com/api/v1/auth/login \
-H "Content-Type: application/json" \
-d '{"email": "you@example.com", "password": "..."}'3
Create a voice agent
Define your agent's personality, knowledge base, and actions.
curl -X POST https://api.aivaon.com/api/v1/voice-agents \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Customer Support",
"language": "en-US",
"personality": "friendly, professional",
"greeting": "Hi, thanks for calling! How can I help?"
}'4
Assign a phone number
Purchase or port a number, then link it to your agent.
curl -X POST https://api.aivaon.com/api/v1/telephony/numbers/purchase \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"country": "US", "agent_id": "agt_abc123"}'5
Make a test call
Call your new number and talk to your AI agent. It answers instantly, understands intent, and can take actions.