***

title: get
slug: /reference/python/rest/datasphere/get
description: Retrieve a specific document.
max-toc-depth: 3
---------------------

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

Retrieve a specific document by ID.

<EndpointSchemaSnippet endpoint="GET /api/datasphere/documents/{id}" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/datasphere/documents/{id}" />

## **Example**

```python {9-10}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

doc = client.datasphere.documents.get("document-id")
print(doc.get("name"), doc.get("id"))
```