> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# List all Recordings

GET https://YOUR_SPACE.signalwire.com/api/laml/2010-04-01/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).

Reference: https://signalwire.com/docs/compatibility-api/rest/recordings/list-recordings

## Authentication

- `Authorization` header (basic auth, required) — SignalWire Basic Authentication using Project ID and API Token. The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password. Example: ``` Authorization: Basic base64(project_id:token) ```

## Request

### Path parameters

- `AccountSid` (string, required) — The unique identifier for the account that is associated with this recording.

### Query parameters

- `DateCreated` (string, optional) — Filter by recordings created on this exact date (RFC 2822 format).
- `DateCreated<` (string, optional) — Filter by recordings created before this date (RFC 2822 format).
- `DateCreated>` (string, optional) — Filter by recordings created after this date (RFC 2822 format).
- `CallSid` (string, optional) — Filter by recordings associated with a specific call.
- `ConferenceSid` (string, optional) — Filter by recordings associated with a specific conference.
- `Page` (integer, optional, default: 0) — The page number to retrieve (zero-indexed).
- `PageSize` (integer, optional, default: 50) — The number of results per page. Default is 50, maximum is 1000.
- `PageToken` (string, optional) — Token for cursor-based pagination. Required when navigating to pages beyond the first.

## Response

### 200

The request has succeeded.

- `uri` (string, required) — The URI of the current page.
- `first_page_uri` (string, required) — The URI of the first page.
- `next_page_uri` (string, required, nullable) — The URI of the next page. Null if there are no more pages.
- `previous_page_uri` (string, required, nullable) — 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` (list of object, required) — List of recordings.
  - `sid` (string, required) — The unique identifier for the recording.
  - `account_sid` (string, 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, required, nullable) — The unique identifier for the call that is associated with this recording. Null if this is a conference recording.
  - `conference_sid` (string, required, nullable) — The unique identifier for the conference that is associated with this recording. Null if this is a call recording.
  - `channel` (enum, required) — The number of channels in a recording (singular key). Returns '1' for mono or '2' for stereo.
    - Allowed values: `1`, `2`
  - `channels` (enum, required) — The number of channels in a recording. Returns '1' for mono or '2' for stereo.
    - Allowed values: `1`, `2`
  - `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, required, nullable) — The time, in RFC 2822 format, this recording started.
  - `end_time` (string, required, nullable) — The time, in RFC 2822 format, this recording ended.
  - `duration` (integer, required) — The length, in seconds, of the recording.
  - `price` (string, required, nullable) — The cost for the recording.
  - `price_unit` (string, required) — The currency of the price of the recording.
  - `source` (enum, required) — How the recording was made.
    - Allowed values: `DialVerb`, `Conference`, `OutBoundApi`, `Trunking`, `RecordVerb`, `StartCallRecordingApi`, `StartConferenceRecording`
  - `status` (enum, required) — The status of the recording.
    - Allowed values: `queued`, `in-progress`, `paused`, `resumed`, `completed`, `absent`, `stopped`
  - `error_code` (string, required, nullable) — Further details about a failed recording.
  - `uri` (string, required) — The URI of the recording.
  - `subresource_uris` (object, required) — Subresource URIs.
    - `transcriptions` (string, required) — The URI for transcriptions.
  - `encryption_details` (string, required, nullable) — Encryption details. Always null.
  - `trim` (string, required) — Whether leading and trailing silence is trimmed from a recording.

## Examples

**Response**

```json
{
  "uri": "/api/laml/2010-04-01/Accounts/720796a0-8ee9-4350-83bd-2d07a3121f1e/Recordings?Page=0&PageSize=50",
  "first_page_uri": "/api/laml/2010-04-01/Accounts/720796a0-8ee9-4350-83bd-2d07a3121f1e/Recordings",
  "next_page_uri": "/api/laml/2010-04-01/Accounts/720796a0-8ee9-4350-83bd-2d07a3121f1e/Recordings?Page=1&PageSize=50&PageToken=PA19e436af-5688-4307-b03b-bdb2b42b8142",
  "previous_page_uri": null,
  "page": 0,
  "page_size": 50,
  "recordings": [
    {
      "sid": "19e436af-5688-4307-b03b-bdb2b42b8142",
      "account_sid": "720796a0-8ee9-4350-83bd-2d07a3121f1e",
      "api_version": "2010-04-01",
      "call_sid": "43bb71ee-553f-4074-bb20-8e2747647cce",
      "conference_sid": null,
      "channel": "1",
      "channels": "1",
      "date_created": "Tue, 25 Sep 2018 23:00:00 +0000",
      "date_updated": "Wed, 26 Sep 2018 23:00:04 +0000",
      "start_time": "Tue, 25 Sep 2018 23:00:00 +0000",
      "end_time": "Wed, 26 Sep 2018 23:00:04 +0000",
      "duration": 4,
      "price": "-0.0025",
      "price_unit": "USD",
      "source": "DialVerb",
      "status": "queued",
      "error_code": null,
      "uri": "/api/laml/2010-04-01/Accounts/720796a0-8ee9-4350-83bd-2d07a3121f1e/Recordings/19e436af-5688-4307-b03b-bdb2b42b8142.json",
      "subresource_uris": {
        "transcriptions": "/api/laml/2010-04-01/Accounts/720796a0-8ee9-4350-83bd-2d07a3121f1e/Recordings/19e436af-5688-4307-b03b-bdb2b42b8142/Transcriptions.json"
      },
      "encryption_details": null,
      "trim": "do-not-trim"
    }
  ]
}
```

**SDK Code**

```python
import requests

url = "https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Recordings"

response = requests.get(url, auth=("<project_id>", "<api_token>"))

print(response.json())
```

```javascript
const url = 'https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Recordings';
const credentials = btoa("<project_id>:<api_token>");

const options = {method: 'GET', headers: {Authorization: `Basic ${credentials}`}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Recordings"

	req, _ := http.NewRequest("GET", url, nil)

	req.SetBasicAuth("<project_id>", "<api_token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Recordings")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request.basic_auth("<project_id>", "<api_token>")

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Recordings")
  .basicAuth("<project_id>", "<api_token>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Recordings', [
  'headers' => [
  ],
    'auth' => ['<project_id>', '<api_token>'],
]);

echo $response->getBody();
```

```csharp
using RestSharp;
using RestSharp.Authenticators;

var client = new RestClient("https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Recordings");
client.Authenticator = new HttpBasicAuthenticator("<project_id>", "<api_token>");
var request = new RestRequest(Method.GET);

IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let credentials = Data("<project_id>:<api_token>".utf8).base64EncodedString()

let headers = ["Authorization": "Basic \(credentials)"]

let request = NSMutableURLRequest(url: NSURL(string: "https://your_space.signalwire.com/api/laml/2010-04-01/Accounts/AccountSid/Recordings")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```