***

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

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

List applications in the account.

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

## **Response Example**

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

## **Example**

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

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

apps = client.compat.applications.list(PageSize=20)
```