***

title: list
slug: /reference/python/rest/datasphere/list
description: List documents in the project.
max-toc-depth: 3
---------------------

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

List documents in the project.

<EndpointSchemaSnippet endpoint="GET /api/datasphere/documents" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/datasphere/documents" />

## **Example**

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

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

result = client.datasphere.documents.list()
for doc in result.get("data", []):
    print(doc.get("name"), doc.get("id"))
```