curl --request GET \
--url https://mgmt-api.voxfra.com/v1/calls \
--header 'X-API-Key: <api-key>'{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"client_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"call_start_time": "2023-11-07T05:31:56Z",
"call_end_time": "2023-11-07T05:31:56Z",
"call_duration_seconds": 123,
"caller_phone_number": "<string>",
"caller_full_name": "<string>",
"call_summary": "<string>",
"transcript": "<string>",
"transfer_flag": true,
"hangup_reason": "<string>",
"recording_url": "<string>"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}Returns calls for the authenticated organization, ordered by creation date descending. Supports pagination and filtering by client, date range.
curl --request GET \
--url https://mgmt-api.voxfra.com/v1/calls \
--header 'X-API-Key: <api-key>'{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"client_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"call_start_time": "2023-11-07T05:31:56Z",
"call_end_time": "2023-11-07T05:31:56Z",
"call_duration_seconds": 123,
"caller_phone_number": "<string>",
"caller_full_name": "<string>",
"call_summary": "<string>",
"transcript": "<string>",
"transfer_flag": true,
"hangup_reason": "<string>",
"recording_url": "<string>"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}Your Voxfra management API key. Passed as a request header.
Format: vox_mgmt_<random>
Filter by client UUID
ISO 8601 date — return calls on or after this date
ISO 8601 date — return calls on or before this date
Number of results to return (max 200, default 50)
1 <= x <= 200Number of results to skip for pagination
x >= 0Was this page helpful?