Create an Audio Only Conversation

All features in the persona’s pipeline, including STT, Perception, and TTS, remain fully active in audio-only mode. The only change is that replica video rendering is not included.

1

Step 1: Get an API Key

  1. Go to the Tavus platform and select API Key from the sidebar menu.
  2. Click Create New Key to begin generating your API key.
  3. Enter a name for the key and (optional) specify allowed IP addresses, then click Create API Key.
  4. Copy your newly created API key and store it securely.

We cannot recover your API Key if you lose it.

2

Step 2: Make your Audio Only Conversation

In this example, we will use stock persona ID pdced222244b (Sales Coach).

To enable audio-only mode, set the audio_only parameter to true when creating the conversation:

cURL
curl --request POST \
  --url https://tavusapi.com/v2/conversations \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api_key>' \
  --data '{
  "persona_id": "pdced222244b",
  "audio_only" true
}'

Note: Replace <api_key> with your actual API key.

3

Step 3: Join the Conversation

To join the conversation, click the link in the conversation_url field from the response:

{
    "conversation_id": "cd7e3eac05ede40c",
    "conversation_name": "New Conversation 1751268887110",
    "conversation_url": "<conversation_link>",
    "status": "active",
    "callback_url": "",
    "created_at": "2025-06-30T07:34:47.131571Z"
}