Skip to main content
GET
/
api
/
v1
/
get-call-result
/
{call_id}
Get call result
curl --request GET \
  --url https://voxworks.ai/api/v1/get-call-result/{call_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "call": {
    "id": "<string>",
    "status": "<string>",
    "progress": "<string>",
    "end_reason": "<string>",
    "duration": 123,
    "scheduled_time": "2023-11-07T05:31:56Z",
    "actual_time": "2023-11-07T05:31:56Z",
    "end_time": "2023-11-07T05:31:56Z",
    "modified_at": "2023-11-07T05:31:56Z",
    "type": "<string>",
    "script_id": "<string>",
    "contact_id": "<string>",
    "call_summary": "<string>",
    "structured_data": {},
    "transcript": "<string>",
    "transcript_json": {},
    "recording_url": "<string>",
    "rating": 123,
    "objectives": [
      {}
    ],
    "post_call_actions": [
      {}
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.voxworks.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key from Voxworks, sent as Authorization: Bearer YOUR_API_KEY.

Path Parameters

call_id
string
required

Unique call ID.

Response

Call result returned.

success
boolean
required
Example:

true

call
object
required