Calls API — List and Retrieve Recorded Sales Calls
Use the Revont Calls API to list recorded calls with filters or fetch a single call by ID, including its full transcript and coaching metadata.
The Calls API gives you access to every call recorded in your Revont workspace. You can list calls with filters — by rep, date range, or outcome — and retrieve individual calls with their full transcripts and metadata. Use these endpoints to build reporting pipelines, feed data into your CRM, or power custom coaching dashboards.
Returns a paginated list of call records in your workspace, ordered by creation time descending. Use the query parameters below to filter and page through results.
{ "id": "call_01HX4BQZPK8J2NFRT3WY", "created_at": "2024-03-15T14:32:00Z", "duration_seconds": 1842, "rep_id": "user_01HX1ABCDE", "prospect_email": "jane.doe@acme.com", "coaching_score": 78, "outcome": "won", "transcript": [ { "speaker": "rep", "start_ms": 0, "end_ms": 7400, "text": "Hey Jane, thanks for making the time today. How are you doing?" }, { "speaker": "prospect", "start_ms": 7500, "end_ms": 14200, "text": "Doing well, thanks! Really looking forward to seeing the new features." }, { "speaker": "rep", "start_ms": 14300, "end_ms": 26800, "text": "Great — let me share my screen and we can jump right in." } ]}