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

# Keyframe Labs

> Video call and avatar API enabling AI agents to participate in real-time video conversations with animated avatars.

Video call and avatar API enabling AI agents to participate in real-time video conversations with animated avatars. Best for workflows needing visual AI presence -- customer-facing video agents, interactive demos, and avatar-powered video calls. Unlike ElevenLabs (audio-only TTS), Keyframe Labs adds a visual component with real-time avatar rendering.

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

## Endpoints

### Start a video session

**POST** `https://api.keyframelabs.com/v1/sessions` — Free / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.keyframelabs.com/v1/sessions', { body: {"session_id":"sess_123","prompt":"Start the call"} });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.keyframelabs.com%2Fv1%2Fsessions" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"session_id":"sess_123","prompt":"Start the call"}'
    ```
  </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>
