# GET /v1/convai/conversations (ElevenLabs API)
Base URL: https://api.elevenlabs.io
Auth: xi-api-key: <ELEVENLABS_API_KEY>
Last verified: 2026-09-03

> Get Conversations

## Critical Gotchas
* Authentication uses the non-standard `xi-api-key` header, not `Authorization: Bearer`. Sending a Bearer token returns HTTP 401.
* Text-to-speech responses are raw binary audio, not JSON. Write the body to a file (`--output speech.mp3`) rather than parsing it.

## cURL
curl -X GET 'https://api.elevenlabs.io/v1/convai/conversations?cursor=example-cursor&agent_id=agent-id&visited_agent_ids=example&visited_agent_branch_ids=example&triggered_procedure_ids=example&call_successful=success&call_start_before_unix=10&call_start_after_unix=10&call_duration_min_secs=10&call_duration_max_secs=10&rating_max=10&rating_min=10&has_feedback_comment=true&user_id=user-id&evaluation_params=example&data_collection_params=example&data_collection_ids=example&evaluation_criteria_ids=example&tool_names=example&tool_names_successful=example&tool_names_errored=example&include_invalid_tool_calls=false&main_languages=example&page_size=30&summary_mode=exclude&search=example-search&conversation_initiation_source=unknown&text_only=true&conversation_product_type=agents&branch_id=branch-id&version_id=version-id&parent_conversation_id=parent-conversation-id&topic_ids=example&exclude_statuses=example&tag_ids=example&workflow_node_entered_id=workflow-node-entered-id&termination_reasons=example&guardrail_types=example&custom_guardrail_names=example&sort_direction=asc' \
  -H "xi-api-key: $ELEVENLABS_API_KEY"

## Parameters
| Name | In | Type | Required | Description |
| :--- | :--- | :--- | :--- | :--- |
| cursor | query | string | No | Used for fetching next page. Cursor i... |
| agent_id | query | string | No | Agent id (agent_…) or speech engine e... |
| visited_agent_ids | query | string[] | No | Filter conversations where any of the... |

## Response (200 OK)
{"conversations":[{}],"next_cursor":"string"}

---
Need an API key? Get one at https://elevenlabs.io/app/sign-up