Skip to main content
GET
/
cdr
/
{uuid}
Get details of a specific call
curl --request GET \
  --url https://api.wavix.com/v1/cdr/{uuid}
{
  "date": "2023-08-21T06:43:36.000Z",
  "from": "14302287001",
  "to": "33170363950",
  "disposition": "answered",
  "duration": 6,
  "destination": "France",
  "per_minute": "0.027",
  "recording_url": "https://api.wavix.com/v1/recordings/uuid",
  "charge": "<string>",
  "sip_trunk": "32882",
  "forward_fee": "0.0",
  "uuid": "99df5ffd-962a-410f-bcce-d08f1f7f328c",
  "parent_uuid": "99df5ffd-962a-410f-bcce-d08f1f7f328c",
  "answered_by": "human"
}

Authorizations

appid
string
query
required

An API key to authorize your request

Path Parameters

uuid
string
required

Unique identifier of a call

Example:

"aa566501-c591-4a8b-b3b9-cc1295398b72"

Query Parameters

show_transcription
boolean

Include transcription information in the response

Example:

true

Response

Specific call details

date
string<date-time>
required

Date and time of the call

Example:

"2023-08-21T06:43:36.000Z"

from
string
required

ANI/From attribute of the call

Example:

"14302287001"

to
string
required

DNIS/To attribute of the call

Example:

"33170363950"

disposition
enum<string>
required

Call disposition

Available options:
answered,
noanswer,
busy,
failed,
all
duration
integer
required

Duration of the call, in seconds

Example:

6

destination
string
required

Destination of the call. For outbound calls, it contains the country name and, optionally, the mobile carrier or city name. For inbound calls, it contains the user-defined name of a SIP trunk, a SIP URI, or a PSTN number to which the call was forwarded.

Example:

"France"

per_minute
string
required

Price per minute, in USD

Example:

"0.027"

charge
string
required

Total charge for the call, in USD

uuid
string
required

Call ID

Example:

"99df5ffd-962a-410f-bcce-d08f1f7f328c"

recording_url
string

An URL to the file containing the recorded call. Call recording can be enabled on a SIP trunk for outbound calls and on a DID for inbound calls.

Example:

"https://api.wavix.com/v1/recordings/uuid"

sip_trunk
string

System-generated login of a SIP trunk. For outbound calls only.

Example:

"32882"

forward_fee
string

PSTN forwarding price, in USD. For inbound calls only when forwarded to PSTN.

Example:

"0.0"

parent_uuid
string | null

Parent UUID

Example:

"99df5ffd-962a-410f-bcce-d08f1f7f328c"

answered_by
string | null

Answered by

Example:

"human"

I