***

title: list
slug: /reference/python/rest/compat/calls/list
description: List calls in the account.
max-toc-depth: 3
---------------------

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

List calls in the account.

<EndpointSchemaSnippet endpoint="GET /Accounts/{AccountSid}/Calls" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /Accounts/{AccountSid}/Calls" />

## **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.compat.calls.list(Status="completed", PageSize=20)
```