***

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

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

List voice call log entries.

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

## **Response Example**

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

## **Example**

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

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

calls = client.logs.voice.list(page_size=20)
for call in calls.get("data", []):
    print(call.get("from"), "->", call.get("to"), call.get("duration"))
```