Skip to main content
GET
List calls

Authorizations

X-Api-Key
string
header
required

The API Key created in Rounded Studio.

Query Parameters

agent_id
string | null

Filter calls by the agent ID that handled them.

call_type
enum<string> | null

Filter by call type (e.g., phone_call or web_call).

Available options:
phone_call,
web_call
from_number
string | null

Filter by the phone number that initiated the call (E.164 format with + prefix).

to_number
string | null

Filter by the destination phone number of the call (E.164 format with + prefix).

start_time_gt
string | null

Return only calls with start_time greater than this value (ISO 8601 format).

start_time_lt
string | null

Return only calls with start_time less than this value (ISO 8601 format).

cursor
string | null

Cursor for pagination (ISO 8601 datetime of last seen record).

page
integer | null

Page number for page-based pagination (1-indexed, only used when use_cursor=false).

limit
integer | null
default:50

Maximum number of results to return per page (default: 50, max: 1000).

use_cursor
boolean | null
default:true

Pagination mode selection: true for cursor-based pagination, false for page-based pagination.

include_transcript
boolean | null
default:false

Whether to include transcript data in the response.

include_variable_values
boolean | null
default:false

Whether to include variable values in the response.

Response

Successfully retrieved calls

data
(PhoneCallGetApiResponseData · object | WebCallGetApiResponseData · object)[]
required

List of call objects matching the query criteria.

message
string
default:Calls retrieved successfully

Response message indicating the status of the request.

status
integer
default:200

HTTP status code (200 for successful requests).

next_cursor
string | null

Next cursor value for cursor-based pagination (ISO 8601 datetime string, only present when use_cursor=true).

current_page
integer | null

Current page number (only present when use_cursor=false).

total_pages
integer | null

Total number of pages available (only present when use_cursor=false).

total_items
integer | null

Total count of items matching the query criteria (only present when use_cursor=false).