Skip to main content
This guide shows how to integrate Retell AI with Vobiz using the API for automated outbound calling - ideal for developers building applications that trigger AI calls programmatically.
Prefer a visual dashboard? Check out the dashboard setup guide for a no-code integration method.

Prerequisites

Get Vobiz credentials:

Step 1: Get your API key

  1. Go to Retell Dashboard → Settings → API Keys.
  2. Click Create API Key.
  3. Copy the key (it starts with key_).
Keep this key secret - never commit it to git or share publicly. Store it securely in environment variables.

Step 2: List available agents

Retrieve all agents to get the agent_id you’ll use for calls:
Example response:
What to extract:
  • agent_id - use this when making calls
  • agent_name - human-readable label
  • voice_id - the voice the agent uses
Copy the agent_id for the agent you want to use.

Step 3: Configure phone number with SIP trunk

Add your Vobiz phone number and SIP trunk configuration to Retell:
Required fields:
Get your Vobiz credentials from Vobiz ConsoleTrunks → your trunk.

Step 4: Make an outbound call

Trigger an outbound AI call programmatically:
Required parameters: Example response:
Call status values:
  • registered - call initiated
  • ringing - phone is ringing
  • ongoing - call connected
  • ended - call finished
Call initiated! The destination phone will ring, and when answered, the AI agent will speak.

Troubleshooting

401 Unauthorized

Invalid API key.

”Phone number not found”

Phone number not configured in Retell.
  • Run Step 3 to add the phone number with the SIP trunk.
  • Verify the number format is E.164.

Call fails immediately

Possible causes:
  1. Wrong SIP credentials - verify Vobiz username/password at Vobiz Console.
  2. Wrong transport type - try "UDP" instead of "TCP" in the trunk config.
  3. Incorrect SIP domain - must be the exact Vobiz domain (for example, abc123.sip.vobiz.ai); do not include the sip: prefix.
  4. Insufficient balance - check your Vobiz account has credits at Vobiz Console. See account balance.

Agent doesn’t speak

Agent not configured or not published.
  • Ensure the agent is published in Retell Dashboard → Agents.
  • Check the agent has a voice configured.
  • Verify the agent ID matches the phone number config.

Quick reference

API endpoints

Base URL: https://api.retellai.com Authentication: Authorization: Bearer YOUR_API_KEY

Complete call flow

Resources

Your Retell AI agents can now make outbound calls through Vobiz programmatically - perfect for automated campaigns and application integrations.