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

# List all Recordings

`GET /Accounts/{AccountSid}/Recordings`

List all recordings. Results are returned as a paginated list 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](/platform/dashboard/getting-started/your-signalwire-api-space#api-token-scopes).

## Path parameters

- `AccountSid` string, uuid, required

## Query parameters

- `DateCreated` string
- `DateCreated<` string
- `DateCreated>` string
- `CallSid` string, uuid
- `ConferenceSid` string, uuid
- `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 — The unique identifier for the recording.
    - `account_sid` string, uuid, required — The unique identifier for the account that is associated with this recording.
    - `api_version` string, required — The version of the SignalWire API.
    - `call_sid` string, uuid, nullable, required — The unique identifier for the call that is associated with this recording. Null if this is a conference recording.
    - `conference_sid` string, uuid, nullable, required — The unique identifier for the conference that is associated with this recording. Null if this is a call recording.
    - `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-01-19** `d5fbaaddfa3e` — 11 breaking, 9 warning, 36 info
  - for the `query` request parameter `CallSid`, the format changed from no format to `uuid`
  - for the `query` request parameter `ConferenceSid`, the format changed from no format to `uuid`
  - the response property `next_page_uri` became nullable for the status `200`
  - the response property `previous_page_uri` became nullable for the status `200`
  - …52 more
- **2026-01-15** `07f73f74a61d` — 3 info
  - added the optional property `account_sid` to the response with the `200` status
  - added the optional property `end` to the response with the `200` status
  - added the optional property `start` to the response with the `200` status
- **2026-01-15** `686ef84c2abc` — 2 breaking
  - the response property `previous_page_uri` became nullable for the status `200`
  - the response property `recordings/items/error_code` became nullable for the status `200`
- **2026-01-15** `3c88f14db21e` — 1 breaking, 9 info
  - the response's body type changed from no type to `object` for status `200`
  - removed `#/components/schemas/pagination, subschema #2` from the response body `allOf` list for the response status `200`
  - added the non-success response with the status `401`
  - added the optional property `first_page_uri` to the response with the `200` status
  - …6 more

[Change 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/8891278c1908/schema)
