Skip to main content
GET
/
calls
통화 목록 조회
curl --request GET \
  --url https://client-api.tryvox.co/v3/calls \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "agent": {
        "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "agent_version": "current"
      },
      "call_type": "web",
      "status": "queued",
      "from_number": "<string>",
      "to_number": "<string>",
      "presentation_number": "<string>",
      "disconnection_reason": "user_hangup",
      "start_at": 123,
      "end_at": 123,
      "recording_url": "<string>",
      "metadata": {},
      "dynamic_variables": {},
      "call_analysis": {
        "summary": "<string>",
        "user_sentiment": "positive",
        "custom_analysis_data": [
          {}
        ]
      },
      "call_cost": {
        "total_cost": "<string>"
      },
      "variant_label": "<string>",
      "opt_out_sensitive_data_storage": false
    }
  ],
  "total_count": 123,
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.tryvox.co/llms.txt

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

Authorizations

Authorization
string
header
required

조직 API 키를 Authorization: Bearer <token> 형식으로 보냅니다.

Query Parameters

agent_id
string<uuid>[] | null

에이전트 UUID 필터입니다. 여러 에이전트로 필터링하려면 query parameter를 반복해서 전달합니다.

status
enum<string>[] | null

상태 필터입니다. 여러 상태를 지원하는 endpoint에서는 query parameter를 반복해서 전달합니다.

Available options:
queued,
ongoing,
ended,
error,
canceled,
not_connected
call_type
enum<string>[] | null

통화 유형 필터 (반복 가능). 허용값: web/phone/inbound/outbound/api.

Available options:
web,
phone,
inbound,
outbound,
api
disconnection_reason
enum<string>[] | null

통화 종료 사유 필터 (반복 가능).

Available options:
user_hangup,
agent_hangup,
dial_no_answer,
dial_failed,
dial_busy,
voicemail_reached,
concurrency_limit_reached,
insufficient_balance,
error_voxai,
max_duration_reached,
inactivity,
flow_error,
call_transfer,
orphaned_no_agent_pickup,
dial_declined,
daily_call_limit_reached,
hourly_call_limit_reached
call_from
string[] | null

발신 번호 필터 (반복 가능). 하이픈 없는 국내 번호.

call_to
string[] | null

수신 번호 필터 (반복 가능). 하이픈 없는 국내 번호.

start_at_after
integer | null

통화 연결 시각 하한입니다(unix ms, 이 시각 이상). 10~11자리 unix 초 입력도 허용하며, 자동으로 ms로 정규화합니다. 아직 연결되지 않은 통화도 포함될 수 있습니다.

start_at_before
integer | null

통화 연결 시각 상한입니다(unix ms, 이 시각 이하). 10~11자리 unix 초 입력도 허용하며, 자동으로 ms로 정규화합니다.

sort_order
enum<string>
default:desc

정렬 방향입니다. 허용값은 asc, desc입니다.

Available options:
asc,
desc
cursor
string | null

이전 응답의 next_cursor 값입니다. 다음 페이지를 조회할 때 그대로 전달합니다.

limit
integer
default:50

반환할 최대 항목 수입니다. v3 목록 endpoint는 1~100을 허용합니다.

Required range: 1 <= x <= 100

Response

성공 응답

통화 목록 페이지 응답입니다.

items
CallListItemResponse · object[]
required

페이지 항목입니다.

total_count
integer
required

조건에 맞는 전체 항목 수입니다.

next_cursor
string | null

다음 페이지 커서입니다. 조회할 항목이 더 없으면 null입니다.