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

# Replicas

> AI replica creation and interaction API for building persistent digital personas with voice and video capabilities.

AI replica creation and interaction API for building persistent digital personas with voice and video capabilities. Best for creating branded AI representatives -- support agents, sales representatives, and interactive characters with consistent personalities. Unlike Keyframe Labs (session-based video), Replicas focuses on persistent persona creation with memory and personality traits.

1 example endpoint available through Lava's AI Gateway. See the [Replicas API docs](https://docs.replicas.dev/api-reference) 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.replicas.dev` is supported. AI replica API. Construct URL as [https://api.replicas.dev/v1/\&#123;path\&#125](https://api.replicas.dev/v1/\&#123;path\&#125);. The endpoints below are curated examples.</Info>

## Endpoints

### Create a replica

**POST** `https://api.replicas.dev/v1/replica` — Free / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.replicas.dev/v1/replica', { body: {"name":"Support Agent","prompt":"Answer user questions"} });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.replicas.dev%2Fv1%2Freplica" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"name":"Support Agent","prompt":"Answer user questions"}'
    ```
  </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>
