***

title: Applications
slug: /reference/typescript/rest/compat/applications
description: Manage applications with CRUD operations.
max-toc-depth: 3
---------------------

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

[restclient]: /docs/server-sdks/reference/typescript/rest/client

[list]: /docs/server-sdks/reference/typescript/rest/compat/applications/list

[create]: /docs/server-sdks/reference/typescript/rest/compat/applications/create

[get]: /docs/server-sdks/reference/typescript/rest/compat/applications/get

[update]: /docs/server-sdks/reference/typescript/rest/compat/applications/update

[delete]: /docs/server-sdks/reference/typescript/rest/compat/applications/delete

Manage applications with CRUD operations. Applications define voice and messaging
URL endpoints for handling incoming calls and messages.

Access via `client.compat.applications` on a [`RestClient`][restclient] instance.

```typescript {9}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com",
});

const apps = await client.compat.applications.list();
```

## **Methods**

<CardGroup cols={3}>
  <Card title="list" href="/docs/server-sdks/reference/typescript/rest/compat/applications/list">
    List applications in the account.
  </Card>

  <Card title="create" href="/docs/server-sdks/reference/typescript/rest/compat/applications/create">
    Create a new application.
  </Card>

  <Card title="get" href="/docs/server-sdks/reference/typescript/rest/compat/applications/get">
    Retrieve a single application by SID.
  </Card>

  <Card title="update" href="/docs/server-sdks/reference/typescript/rest/compat/applications/update">
    Update an application.
  </Card>

  <Card title="delete" href="/docs/server-sdks/reference/typescript/rest/compat/applications/delete">
    Delete an application.
  </Card>
</CardGroup>