---
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](/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.

---

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