Overview
This guide covers how to make outbound calls with your Retell agents. Before proceeding, ensure you have:- Created and configured an agent
- Purchased or imported phone numbers
- Set up your API credentials
Prerequisites
- Phone Number: A Retell-managed or imported number
- Agent: A configured agent ready for outbound calls
- API Key: Your Retell API key for authentication
Step 1: Bind Agents to Phone Numbers
Before making calls, you must assign agents to your phone numbers. This configuration determines how your number handles both inbound and outbound calls.Configuration Options
Setting | Purpose | Use Case |
---|---|---|
Inbound Agent | Handles incoming calls to this number | Customer support, callbacks |
Outbound Agent | Used when making calls from this number | Sales outreach, notifications |
Flexible Agent Assignment
- Different agents: Use specialized agents for inbound vs outbound
- Outbound only: Leave inbound agent unset to prevent callbacks
- Inbound only: Configure only inbound agent for receive-only numbers

After binding an inbound agent, your number is immediately ready to receive calls. Test it by calling the number!
Step 2: Make Outbound Calls
International Calling Restrictions
Retell-purchased numbers: Currently limited to domestic calls only.
Imported numbers: International calling depends on your telephony provider’s settings.
Call Parameters
When making outbound calls, you’ll need:Parameter | Format | Example | Description |
---|---|---|---|
from_number | E.164 | +14157774444 | Your Retell number |
to_number | E.164 | +12137774445 | Destination number |
dynamic_variables | Object | {name: "John"} | Optional personalization |
custom_sip_headers | Object | {"X-Call-ID": "123"} | Optional SIP headers |

API Implementation
For complete parameter documentation, see Create Phone Call API Reference.Step 3: Configure CPS (Calls Per Second)
Understanding CPS Limits
CPS (Calls Per Second) controls how many outbound calls you can initiate per second. This prevents system overload and ensures call quality.Default Limits & Scaling
Provider | Default CPS | Maximum CPS | Notes |
---|---|---|---|
Twilio | 1 | 5 | Changes take up to 10 minutes |
Telnyx | 1 | 16 | Instant updates |
Custom Telephony | 1 | Concurrency ÷ 20 | Based on your concurrency limit |
Important Considerations
- Throttling Protection: Exceeding limits results in rejected calls
- Gradual Scaling: Start low and increase based on actual needs
- Provider Limits: Your telephony provider may have additional restrictions
- Cost Impact: Higher CPS may increase telephony costs

Best Practices for High-Volume Calling
Implement retry logic with exponential backoff to handle throttling gracefully:
Step 4: Monitor Call Details
Available Monitoring Methods
1. API Polling
Use Get Call API to retrieve:- Full transcript
- Call recording
- Latency metrics
- Function call logs
- Call duration and status
2. Real-time Webhooks
Set up webhooks to receive instant notifications for:- Call Started: When the call connects
- Call Ended: Final status and duration
- Call Analyzed: Transcript and analysis ready
- Call Failed: Error details and reasons
Webhooks provide real-time updates without polling, making them ideal for production systems.
Additional Resources
- Community Templates: Real-world outbound calling examples
- Batch Calling Guide: For high-volume campaigns
- Webhook Setup: Configure real-time notifications