Skip to main content

Get Calls

This request returns a list of calls.

get/calls

Sample Request

A sample GET request to retrieve a list of Call objects that match the criteria in the request URL. The request can include query parameters to filter, sort, and paginate the results.

curl -X GET \
'https://api.carrierx.com/conference/v2/calls' \
-u 'conference_user_123:qwerty123'

Sample Response

200 response code with a list of Call objects:

{
"count": 1,
"has_more": false,
"items": [
{
"access_code": "890671",
"account_sid": "a1f38bf7-5879-49c1-be72-50ffa7f249a6",
"call_sid": "69057c3e-bb90-4ed3-9c53-000000000563",
"codecs": "PCMU",
"date_created": "2025-06-03T14:11:55.000Z",
"date_joined": "2025-06-03T14:11:55.000Z",
"direction": "In",
"duration": 28,
"gain_level": 0,
"meeting_room_sid": "d54061ef-8a16-459c-b055-6c0c297f46af",
"meeting_sid": "aaa07454-fa93-3d2d-b7b4-c5da9f2f87fd",
"muted": false,
"name": "",
"number_dst": "\"15162065515\" <sip:15162065515@11.22.33.44>",
"number_src": "<sip:+17605692222@55.66.77.88",
"on_hold": false,
"role": "host"
}
],
"limit": 10,
"offset": 0,
"pagination": {},
"total": 1
}

This request is enabled for Pagination, Result Filtering, and Field Filtering.