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

# Get a Conference Recording

GET https://YOUR_SPACE.signalwire.com/api/laml/2010-04-01/Accounts/{AccountSid}/Conferences/{ConferenceSid}/Recordings/{Sid}

Get details for a specific conference recording.

#### 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/conference-recordings/get-conference-recording

## 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 created this conference.
- `ConferenceSid` (string, required) — The unique identifier for the conference this participant is in.
- `Sid` (string, required) — The unique identifier for the recording.

## Response

### 200

The request has succeeded.

- `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. Always null for conference recordings.
- `conference_sid` (string, required, nullable) — The unique identifier for the conference that is associated with this 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: `Conference`, `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
{
  "sid": "19e436af-5688-4307-b03b-bdb2b42b8142",
  "account_sid": "720796a0-8ee9-4350-83bd-2d07a3121f1e",
  "api_version": "2010-04-01",
  "call_sid": null,
  "conference_sid": "43bb71ee-553f-4074-bb20-8e2747647cce",
  "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": "Conference",
  "status": "queued",
  "error_code": null,
  "uri": "/api/laml/2010-04-01/Accounts/720796a0-8ee9-4350-83bd-2d07a3121f1e/Conferences/43bb71ee-553f-4074-bb20-8e2747647cce/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/Conferences/ConferenceSid/Recordings/Sid"

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/Conferences/ConferenceSid/Recordings/Sid';
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/Conferences/ConferenceSid/Recordings/Sid"

	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/Conferences/ConferenceSid/Recordings/Sid")

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/Conferences/ConferenceSid/Recordings/Sid")
  .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/Conferences/ConferenceSid/Recordings/Sid', [
  '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/Conferences/ConferenceSid/Recordings/Sid");
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/Conferences/ConferenceSid/Recordings/Sid")! 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()
```