***

title: get
slug: /reference/python/rest/compat/applications/get
description: Retrieve a single application by SID.
max-toc-depth: 3
---------------------

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

Retrieve a single application by SID.

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

## **Response Example**

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

## **Example**

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

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

app = client.compat.applications.get("AP...")
```