Skip to main content

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

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
Phone number configuration showing inbound and outbound agent assignment
After binding an inbound agent, your number is immediately ready to receive calls. Test it by calling the number!

A/B Testing

See A/B Testing.

Step 2: Make Outbound Calls

International Calling Restrictions

Retell-purchased numbers: Retell supports calling to 15 countries.Imported numbers: International calling depends on your telephony provider’s settings.

Call Parameters

When making outbound calls (v2), these parameters are supported: Agent overrides let you adjust per-call behavior without changing the saved agent. See “Agent Overrides” in the Create Phone Call API for supported fields and examples.

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

Important Considerations

  1. Throttling Protection: Exceeding limits results in rejected calls
  2. Gradual Scaling: Start low and increase based on actual needs
  3. Provider Limits: Your telephony provider may have additional restrictions
  4. 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.
Triggering Outbound Calls (Using Make.com)

Additional Resources