Skip to main content
GET
/
call
/
{uuid}
Get a specific call details
curl --request GET \
  --url https://api.wavix.com/v1/call/{uuid}
{
  "call": {
    "uuid": "5dccb6b0-f35c-488c-867b-86fb012c4415",
    "event_type": "call_setup",
    "event_time": "2025-09-22T12:56:38.547Z",
    "event_payload": null,
    "from": "+18045961058",
    "to": "17653889567",
    "call_started": "2025-09-22T12:56:38.547Z",
    "call_answered": null,
    "call_finished": null,
    "machine_detected": false,
    "tag": ""
  },
  "success": true
}

Authorizations

appid
string
query
required

An API key to authorize your request

Path Parameters

uuid
string<uuid>
required

Call ID.

Response

Call details successfully retrieved.

call
object
required
success
boolean
required

Indicates that the request was successful

Example:

true

I