---
title: "List all Recordings"
method: GET
path: "/Accounts/{AccountSid}/Recordings"
tags: ["Recordings"]
---

# List all Recordings

`GET /Accounts/{AccountSid}/Recordings`

Lists saved voice recordings across the account's calls and conferences. Each recording has a SID used to retrieve or delete its media. SignalWire REST [Recordings](/docs/apis/rest/recordings/list-call-recordings) provide JSON operations, while Video [Room Recordings](/docs/apis/rest/video/room-recordings/list-room-recordings) contain video-room media. Results are ordered by creation date, newest first.

#### Permissions

The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Voice_.

[Learn more about API scopes](/docs/platform/your-signalwire-api-space).

## Path parameters

- `AccountSid` string, uuid, required — Universal Unique Identifier.

## Query parameters

- `DateCreated` string
- `DateCreated<` string
- `DateCreated>` string
- `CallSid` string, uuid — Universal Unique Identifier.
- `ConferenceSid` string, uuid — Universal Unique Identifier.
- `Page` integer
- `PageSize` integer
- `PageToken` string

## Response `200`

The request has succeeded.

- RecordingListResponse — Response containing a list of recordings.
  - `uri` string, required — The URI of the current page.
  - `first_page_uri` string, required — The URI of the first page.
  - `next_page_uri` string, nullable, required — The URI of the next page. Null if there are no more pages.
  - `previous_page_uri` string, nullable, required — The URI of the previous page. Null if this is the first page.
  - `page` integer, required — The current page number (zero-indexed).
  - `page_size` integer, required — The number of items per page.
  - `recordings` Recording[], required — List of recordings.
    - `sid` string, uuid, required — Universal Unique Identifier.
    - `account_sid` string, uuid, required — Universal Unique Identifier.
    - `api_version` string, required — The version of the SignalWire API.
    - `call_sid` string, uuid, required — Universal Unique Identifier.
    - `conference_sid` string, uuid, required — Universal Unique Identifier.
    - `channel` '1' | '2', required — The number of channels in a recording (singular key). Returns '1' for mono or '2' for stereo.
    - `channels` '1' | '2', required — The number of channels in a recording. Returns '1' for mono or '2' for stereo.
    - `date_created` string, required — The date, in RFC 2822 format, this recording was created.
    - `date_updated` string, required — The date, in RFC 2822 format, this recording was updated.
    - `start_time` string, nullable, required — The time, in RFC 2822 format, this recording started.
    - `end_time` string, nullable, required — The time, in RFC 2822 format, this recording ended.
    - `duration` integer, required — The length, in seconds, of the recording.
    - `price` string, nullable, required — The cost for the recording.
    - `price_unit` string, required — The currency of the price of the recording.
    - `source` 'DialVerb' | 'Conference' | 'OutBoundApi' | 'Trunking' | 'RecordVerb' | 'StartCallRecordingApi' | 'StartConferenceRecording', required — Recording source.
    - `status` 'queued' | 'in-progress' | 'paused' | 'resumed' | 'completed' | 'absent' | 'stopped', required — Recording status.
    - `error_code` string, nullable, required — Further details about a failed recording.
    - `uri` string, required — The URI of the recording.
    - `subresource_uris` RecordingSubresourceUris, required — Recording subresource URIs.
      - `transcriptions` string, required — The URI for transcriptions.
    - `encryption_details` string, nullable, required — Encryption details. Always null.
    - `trim` string, required — Whether leading and trailing silence is trimmed from a recording.

## Other responses

- `400` — The request was invalid or cannot be processed. Check the error details for more information.
- `401` — Authentication failed. Please verify your credentials and try again.
- `422` — The request could not be processed due to validation errors. Check the error details for more information.

## Changes

- **2026-05-12** `2916d5e3072e` — 4 breaking, 6 info
  - the `recordings/items/account_sid` response's property type/format changed from `string`/`uuid` to ``/`` for status `200`
  - the `recordings/items/call_sid` response's property type/format changed from ``/`uuid` to ``/`` for status `200`
  - the `recordings/items/conference_sid` response's property type/format changed from ``/`uuid` to ``/`` for status `200`
  - the `recordings/items/sid` response's property type/format changed from `string`/`uuid` to ``/`` for status `200`
  - …6 more
- **2026-05-12** `5344c0c93a4c` — 6 info
  - added 'unevaluatedProperties' constraint to the response body for the status `200`
  - added 'unevaluatedProperties' constraint to the response body for the status `400`
  - added 'unevaluatedProperties' constraint to the response body for the status `401`
  - added 'unevaluatedProperties' constraint to the response body for the status `422`
  - …2 more
- …earlier changes not shown

[Full history](https://skmtc.dev/signalwire/apis/compatibility-api/changes/Accounts/:AccountSid/Recordings/get.md)

---

[API](https://skmtc.dev/signalwire/apis/compatibility-api.md) · [All operations](https://skmtc.dev/signalwire/apis/compatibility-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/signalwire/compatibility-api/revisions/723316346320/schema)
