***

title: get
slug: /reference/typescript/rest/compat/accounts/get
description: Retrieve a single account 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 account by its SID.

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

## **Response Example**

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

## **Example**

```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 account = await client.compat.accounts.get("account-sid");
```