v50

latestOpenAPI 3.1.0MITraw.githubusercontent.com2026-06-16122182589.7 KB
Call recording

List call recordings

Returns a paginated list of call recordings for the authenticated account, filtered by date range, number, call, or SIP trunk.

get/v1/recordings

Query parameters

from_datestring date
Example:2023-01-01

Start of the date range to query, in YYYY-MM-DD format. Inclusive.

to_datestring date
Example:2023-12-31

End of the date range to query, in YYYY-MM-DD format. Inclusive.

fromstring
Example:123456

Filters recordings by originating phone number. Accepts a full or partial number.

tostring
Example:1987654321

Filters recordings by destination phone number. Accepts a full or partial number.

call_uuidstring
Example:aa566501-c591-4a8b-b3b9-cc1295398b72

Filters recordings by the unique call ID.

sip_trunksstring[]

Filters recordings of outbound calls placed through the listed SIP trunk logins.

[
  "123",
  "456"
]
pageinteger
Example:1

Page number to retrieve. Default 1.

per_pageinteger
Example:25

Number of records to return per page. Default 25.

Response

Returns a paginated list of call recordings.

Example response

{
  "recordings": [
    {
      "id": 123,
      "created_at": "2023-06-15T10:30:00Z",
      "duration": 120,
      "from": "1234567890",
      "to": "0987654321",
      "call_uuid": "aa566501-c591-4a8b-b3b9-cc1295398b72",
      "url": "https://api.wavix.com/v1/recordings/uuid"
    }
  ],
  "invalid": {
    "dids": [
      "invalid_did_1",
      "invalid_did_2"
    ],
    "sip_trunks": [
      "invalid_trunk_1",
      "invalid_trunk_2"
    ]
  },
  "pagination": {
    "current_page": 2,
    "per_page": 25,
    "total": 101,
    "total_pages": 5
  }
}