Calls
Get Transcript
GET
/api/v1/calls/{call_id}/transcript진행 중인 통화는 그 시점까지의 턴만 옵니다.
Authorization
numberKey AuthorizationBearer <token>
번호 API 키. 키가 곧 발신 번호이자 접근 범위다 — 그 번호의 통화만 조회·제어할 수 있다.
In: header
Path Parameters
call_id*Call Id
Header Parameters
X-Number-Id?string|null
Response Body
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/api/v1/calls/string/transcript"{ "call_id": "3f1c8a52-9d0e-4b77-b3a1-2e5f6c8d9a04", "transcript": [ { "role": "assistant", "sequence": 1, "t_offset_sec": 1.4, "text": "안녕하세요, 예약 변경 건으로 연락드렸습니다.", "timestamp": "2026-08-28T10:15:06+09:00" }, { "role": "user", "sequence": 2, "t_offset_sec": 4.2, "text": "네, 말씀하세요.", "timestamp": "2026-08-28T10:15:09+09:00" } ]}