List Recent Calls
elevenlabs_list_callsList recent voice calls from ElevenLabs agents with optional filters by agent, outcome, or time range. Returns call details including status, duration, and direction.
Instructions
List recent conversations/calls, newest first, with optional filters.
Args:
agent_id (string, optional)
call_successful ('success' | 'failure' | 'unknown', optional)
call_start_after_unix / call_start_before_unix (number, optional)
page_size (1-100, default 30), cursor (string, optional)
Returns JSON: { calls: [{ conversation_id, agent_id, agent_name, status, call_successful, start_time_unix_secs, call_duration_secs, direction }], has_more, next_cursor }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Pagination cursor | |
| agent_id | No | Filter by agent | |
| page_size | No | ||
| call_successful | No | Filter by evaluated call outcome | |
| call_start_after_unix | No | Only calls starting after this unix timestamp (seconds) | |
| call_start_before_unix | No | Only calls starting before this unix timestamp (seconds) |