> ## Documentation Index
> Fetch the complete documentation index at: https://lava.so/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Retell

> Voice agent platform for creating and managing AI-powered phone calls with built-in AI agent logic, conversation flow control, and real-time transcription.

Voice agent platform for creating and managing AI-powered phone calls with built-in AI agent logic, conversation flow control, and real-time transcription. Best for automated outreach, appointment reminders, and voice-based data collection where the AI handles the full conversation. Unlike ElevenLabs (text-to-speech synthesis) or raw telephony APIs, Retell manages the entire call lifecycle — from dial to hang-up — with an AI agent driving the conversation.

2 endpoints available through Lava's AI Gateway. See the [Retell API docs](https://docs.retellai.com/api-references) for full documentation.

<Info>Supports both **managed** (Lava's API keys) and **unmanaged** (bring your own credentials) mode.</Info>

## Endpoints

### Create an outbound phone call

**POST** `https://api.retellai.com/v2/create-phone-call` — Free / minute

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.retellai.com/v2/create-phone-call', { method: 'POST' });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.retellai.com%2Fv2%2Fcreate-phone-call" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json"
    ```
  </Tab>
</Tabs>

### Get call details

**GET** `https://api.retellai.com/v2/get-call` — Free / minute

## Next Steps

<CardGroup cols={2}>
  <Card title="All Providers" icon="grid" href="/gateway/supported-providers">
    Browse all supported AI providers
  </Card>

  <Card title="Forward Proxy" icon="route" href="/gateway/forward-proxy">
    Learn how to construct proxy URLs and authenticate requests
  </Card>
</CardGroup>
