Quickstart Guide
Get started with Vagary Voice in under 5 minutes. This guide will walk you through creating your first AI voice agent.
Prerequisites
- A Vagary Voice account (Sign up here)
- Basic understanding of REST APIs (for API integration)
Step 1: Create an Account
- Visit vagaryvoice.cloud
- Click "Start Free Trial"
- Complete the registration process
- Verify your email
Step 2: Create Your First Voice Agent
- Navigate to the Bots section in the dashboard
- Click Create New Bot
- Configure your agent:
- Name: Give your agent a descriptive name
- Voice: Select from our library of natural voices
- Persona: Define the agent's personality and knowledge base
- Language: Choose the primary language
{
"name": "Customer Support Agent",
"voice_id": "alloy",
"persona": "You are a helpful customer support agent...",
"language": "en-US"
}
Step 3: Test Your Agent
- Click Test Call in the dashboard
- Allow microphone access
- Start speaking to your agent
- Review the conversation in real-time
Step 4: Deploy to Production
Via Dashboard
- Navigate to your agent settings
- Enable "Production Mode"
- Configure your webhook endpoint
- Copy your agent's phone number or embed code
Via API
curl -X POST https://api.vagaryvoice.cloud/v1/bots/{bot_id}/deploy \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"webhook_url": "https://your-server.com/webhook",
"production": true
}'
Next Steps
- Set Up Webhooks - Receive real-time events
- API Reference - Full API documentation
- Dashboard Guide - Navigate the dashboard
Need Help?
- Check our User Guide for detailed instructions
- Contact support@vagaryvoice.cloud