- Route a caller from a front-desk agent to an appointment-booking agent once you know the task.
- Switch from an agent speaking one language to an agent handling another, based on the caller’s preference.
- Keep each agent’s prompt focused on one job, then chain them (A → B → C) instead of maintaining one large prompt.
When to use it
Reach for Agent Transfer when you want to move the caller between AI agents on the same call. Use it to modularize a long or branching flow, reuse a specialized agent across projects, or switch language. Use call transfer instead when the destination is a human or an external phone number. Agent Transfer only swaps between Retell AI agents. Two targets can’t be swapped to: agents backed by a custom LLM and chat-channel agents. Attempting either fails the transfer.Agent Transfer vs. call transfer
Compared with routing to another agent through call transfer, Agent Transfer offers:- Lower latency. The swap is near-instant, with no new phone call to place.
- Better reliability. No new call means no telephony failure to recover from.
- No handoff message needed. The destination agent already has the full conversation history, so the caller never repeats themselves.
- One number for every agent. Agents that receive transfers don’t need their own phone numbers. A single number covers any number of agents.
What the destination agent inherits
The swap keeps everything on the same call, with the samecall_id and one entry in call history. The destination agent automatically receives:
- Full conversation history. The transcript up to the transfer point, so the new agent has the same context the caller does.
- Call-level
metadata. Set on the original call (for example, via Create Phone Call or the Inbound Call Webhook) and shared across every agent on the call. - Dynamic variables. Both the
retell_llm_dynamic_variablespassed when the call started and any variables extracted earlier in the call stay available to the destination agent’s prompt.
{{variable_name}}) in the destination agent’s prompt.
What stays fixed and what switches
Some call-level settings are pinned to the first agent for the whole call, no matter how many swaps happen:- Recording access (
opt_in_signed_url): whether recordings use signed or private URLs. - Data storage setting (
data_storage_setting): what call data Retell stores. - PII redaction (
pii_config): the post-call PII scrubbing rules. - Denoising mode: the audio denoising applied to the call.
Configure the tool
Add the Agent Transfer tool

Add Agent Transfer from the Functions dropdown.
Configure the transfer
- Select agent: the agent to transfer to. Pick a specific version or Latest so the transfer always uses the newest published version. The destination agent’s own voice is used unless you keep the current one.
- Talk While Waiting (optional): when on, the agent speaks a short filler line if the transfer takes more than ~2 seconds (for example, “Let me get you to the right person”). Provide the message as a prompt for the agent to phrase, or as static text to speak verbatim.
- Post-call analysis setting: which agent’s post-call analysis runs after the transfer. Only transferred agent uses the destination agent’s full analysis configuration (its fields, model, and prompts). Both this agent and transferred agent keeps the analysis fields from both; where field names collide, the destination agent’s win. Including both increases usage cost.
- Webhook setting: which agent’s webhook receives call events after the transfer: only this (source) agent, only the transferred agent, or both. Defaults to only the source agent.
- Keep the same voice / keep the current language (optional): carry the current voice or language into the destination agent instead of switching to its own.

The Agent Transfer configuration window.
Prompt the agent to trigger the transfer
Test and debug

Test the transfer in the playground before going live.
FAQ
Can an agent transfer more than once, or transfer back?
Can an agent transfer more than once, or transfer back?
Does the caller notice the transfer?
Does the caller notice the transfer?
Does a transfer create a new call or call ID?
Does a transfer create a new call or call ID?
call_id, and it appears as a single entry in call history. Transcript, metadata, and dynamic variables carry across the swap.How is this different from agentic warm transfer, which also uses a second AI agent?
How is this different from agentic warm transfer, which also uses a second AI agent?
call_id, and the conversation history carries over. Use it to move between AI agents.Agentic warm transfer is a mode of call transfer that places a real outbound call to a phone number. Its transfer agent talks to the person who answers at the destination, never to your caller — your caller is on hold the whole time. Use it to screen a human before handing off to them.Once that transfer agent bridges the call, your caller and the destination are connected directly and every AI drops off. With Agent Transfer, an AI is always still on the line.Which agents can't I transfer to?
Which agents can't I transfer to?
What does the transfer tool look like in the API?
What does the transfer tool look like in the API?
type is agent_swap, with an agent_id and optional agent_version (defaults to the latest). The LLM sees the tool under the name you give it, so name it clearly (for example, transfer_to_appointment_agent).
