> ## 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.

# Callab AI

> AI calling platform for making and receiving phone calls with AI agents.

AI calling platform for making and receiving phone calls with AI agents. Best for voice-based customer interaction workflows -- outbound calling campaigns, inbound call handling, and phone-based AI assistants. Unlike Retell (voice agent infrastructure), Callab focuses on the calling platform layer with built-in agent orchestration.

2 example endpoints available through Lava's AI Gateway. See the [Callab AI API docs](https://docs.callab.ai) for full documentation.

<Warning>This provider requires your own credentials — connect your API key or OAuth account before use.</Warning>

<Info>This is a **catch-all provider** — any valid URL under `https://api.callab.ai` is supported. AI calling platform API. Construct URL as [https://api.callab.ai/\&#123;path\&#125](https://api.callab.ai/\&#123;path\&#125);. The endpoints below are curated examples.</Info>

## Endpoints

### Make a phone call

**POST** `https://api.callab.ai/calls` — Free / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.callab.ai/calls', { body: {"agent_id":"agent_123","to":"+15555550123"} });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.callab.ai%2Fcalls" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"agent_id":"agent_123","to":"+15555550123"}'
    ```
  </Tab>
</Tabs>

### Create an AI agent

**POST** `https://api.callab.ai/ai-agents` — Free / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.callab.ai/ai-agents', { body: {"name":"Support Agent","template_id":"tmpl_123"} });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.callab.ai%2Fai-agents" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"name":"Support Agent","template_id":"tmpl_123"}'
    ```
  </Tab>
</Tabs>

## 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>
