# Get Dataroom

Fetch the details of a specific dataroom using its dataroom ID.

> Kind: REST endpoint · Updated: Mar 6, 2026 · GET /v1/datarooms/:dataroomId

Fetch the details of a specific dataroom using its dataroom ID.

### Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| dataroomId | any | required | Dataroom Id |

### Header parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| Authorization | string | optional | Replace the API_Key placeholder with your actual API key. |

## Example request

**cURL**
```bash
curl --request GET \
     --url https://api.cloudfiles.io/v1/datarooms/:dataroomId \
     --header 'accept: application/json' \
     --header 'authorization: Bearer API_Key'
```

**JavaScript**
```js
var myHeaders = new Headers();
myHeaders.append("accept", "application/json");
myHeaders.append("content-type", "application/json");
myHeaders.append("authorization", "Bearer API_Key");

var requestOptions = {
   method: 'GET',
   headers: myHeaders,
   redirect: 'follow'
};

fetch("https://api.cloudfiles.io/v1/datarooms/:dataroomId", requestOptions)
   .then(response => response.text())
   .then(result => console.log(result))
   .catch(error => console.log('error', error));
```

**Ruby**
```ruby
require "uri"
require "json"
require "net/http"

url = URI("https://api.cloudfiles.io/v1/datarooms/:dataroomId")

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

request = Net::HTTP::Get.new(url)
request["accept"] = "application/json"
request["content-type"] = "application/json"
request["authorization"] = "Bearer API_Key"

response = https.request(request)
puts response.read_body

```

**Python**
```py
import requests
import json

url = "https://api.cloudfiles.io/v1/datarooms/:dataroomId"

payload = {}
headers = {
   'accept': 'application/json',
   'content-type': 'application/json',
   'authorization': 'Bearer API_Key'
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)

```

## Response body

```json
{
  "id": "dr_123",
  "name": "Acme Due Diligence",
  "description": "Q3 fundraise data room",
  "createdAt": "2026-07-01T09:00:00Z",
  "createdBy": "usr_1",
  "updatedAt": "2026-07-08T12:00:00Z"
}
```
