Skip to main content
GET
/
cdr
/
{cdr_uuid}
/
transcription
Request transcription for a specific call
curl --request GET \
  --url https://api.wavix.com/v1/cdr/{cdr_uuid}/transcription
{
  "transcript": {
    "41562494023": "",
    "390240325335": ""
  },
  "turns": [
    {
      "type": "46844685344",
      "s": 160,
      "e": 7280,
      "text": "Three, four five, I'm F. good bye."
    },
    {
      "type": "+16572026750",
      "s": 2400,
      "e": 3280,
      "text": "text"
    }
  ],
  "uuid": "e84f350f-6da7-4b56-80eb-41dec572626b",
  "language": "en",
  "duration": 102,
  "charge": 0.01,
  "status": "completed",
  "transcription_date": "2023-01-09T10:04:39.734Z",
  "call_date": "2023-01-09T10:01:13.394Z",
  "call_uuid": "bbaa37bf-430a-46da-ade3-c248e4070161",
  "call_score": "3.8",
  "call_summary": "The agent and client discussed call recording and call transcription"
}

Authorizations

appid
string
query
required

An API key to authorize your request

Path Parameters

cdr_uuid
string
required

Unique identifier of a call

Example:

"bbaa37bf-430a-46da-ade3-c248e407016"

Response

transcript
object
required

Mapping of phone numbers in the call to their transcript text

Example:
{ "41562494023": "", "390240325335": "" }
turns
Turn · object[]
required

An array of turn objects. Each object contains text attributed to a particular speaker, along with the start and end times for that text.

Example:
[
{
"type": "46844685344",
"s": 160,
"e": 7280,
"text": "Three, four five, I'm F. good bye."
},
{
"type": "+16572026750",
"s": 2400,
"e": 3280,
"text": "text"
}
]
uuid
string
required

Unique identifier of the transcription

Example:

"e84f350f-6da7-4b56-80eb-41dec572626b"

language
enum<string> | null
required

Transcription language

Available options:
en,
de,
es,
fr,
it
duration
integer
required

Call duration

Example:

102

charge
string
required

Full charge for the transcription

Example:

0.01

status
enum<string>
required

Transcription status

Available options:
completed,
failed
transcription_date
string<date-time>
required

Date and time the transcription was processed

Example:

"2023-01-09T10:04:39.734Z"

call_date
string<date-time>
required

Date and time the call was placed or received

Example:

"2023-01-09T10:01:13.394Z"

call_uuid
string
required

Unique identifier of the call the transcription is associated with

Example:

"bbaa37bf-430a-46da-ade3-c248e4070161"

call_score
string
required

The call score indicates whether the call was positive, negative, or neutral, with scores ranging from 1.0 to 3.0 for negative and 4.0 to 5.0 for positive.

Example:

"3.8"

call_summary
string
required

A brief, one or two sentences long summary of the call

Example:

"The agent and client discussed call recording and call transcription"

I