***

title: list
slug: /reference/python/rest/logs/fax/list
description: List fax log entries.
max-toc-depth: 3
---------------------

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

List fax log entries.

<EndpointSchemaSnippet endpoint="GET /api/fax/logs" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/fax/logs" />

## **Example**

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

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

faxes = client.logs.fax.list()
for fax in faxes.get("data", []):
    print(fax.get("from"), "->", fax.get("to"), fax.get("status"))
```