***

title: list_events
slug: /reference/python/rest/logs/voice/list-events
description: List events for a specific voice call.
max-toc-depth: 3
---------------------

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

List events for a specific voice call. Events include state transitions
(ringing, answered, ended), media events, and other call lifecycle data.

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

## **Response Example**

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

## **Example**

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

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

events = client.logs.voice.list_events("voice-log-id")
for event in events.get("data", []):
    print(event.get("type"), event.get("timestamp"))
```