GET
/
v2
/
conversations
curl --request GET \
  --url https://tavusapi.com/v2/conversations \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "conversation_id": "c123456",
      "conversation_name": "A Meeting with Hassaan",
      "status": "active",
      "conversation_url": "https://tavus.daily.co/c123456",
      "callback_url": "https://yourwebsite.com/webhook",
      "replica_id": "r79e1c033f",
      "persona_id": "p5317866",
      "created_at": "",
      "updated_at": "<string>"
    }
  ],
  "total_count": 123
}

Authorizations

x-api-key
string
header
required

Query Parameters

limit
integer

The number of conversations to return per page. Default is 10.

page
integer

The page number to return. Default is 1.

status
string

Filter the conversations by status. Possible values: active, ended.

Response

200 - application/json

The response is of type object.