***

title: get
slug: /reference/python/rest/logs/voice/get
description: Retrieve a specific voice log entry.
max-toc-depth: 3
---------------------

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

Retrieve a specific voice call log entry.

<EndpointSchemaSnippet endpoint="GET /api/voice/logs/{id}" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/voice/logs/{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",
)

call = client.logs.voice.get("voice-log-id")
print(call.get("from"), "->", call.get("to"), call.get("duration"))
```