API 참조
vox.ai API 엔드포인트 목록
통화의 상세 정보를 조회하는 엔드포인트입니다. 통화 ID를 이용하여 통화 녹음, 트랜스크립트, 분석 데이터 등을 조회할 수 있습니다.
cURL
curl --request GET \ --url https://client-api.tryvox.co/v1/get-call/{call_id} \ --header 'Authorization: Bearer <token>'
{ "agent_id": "<string>", "call_id": "<string>", "call_type": "inbound", "call_from": "<string>", "call_to": "<string>", "dynamic_variables": {}, "metadata": {}, "recording_url": "<string>", "transcript": [ { "role": "agent", "content": "<string>" } ] }
대시보드에서 발급받은 API 키를 인증 헤더에 포함시켜야 합니다. 형식은 "Bearer YOUR_API_KEY" 입니다.
조회할 통화의 고유 ID입니다. UUID v4 형식입니다.
Successful Response
The response is of type object.
object