> For the complete documentation index, see [llms.txt](https://turbos.gitbook.io/turbos/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://turbos.gitbook.io/turbos/developer-docs/via-sdk/vault/getvaultbalanceamount.md).

# getVaultBalanceAmount

Retrieve the balance of the devInspect vault

### Signature

`getVaultBalanceAmount(options: VaultBalanceAmountOptions): Promise<[string, string]>`

### Params

```typescript
interface VaultBalanceAmountOptions {
  strategyId: string;
  vaultId: string;
  coinTypeA: string;
  coinTypeB: string;
  address: string;
}
```

### Examples

```typescript
const result = await sdk.vault.getVaultBalanceAmount({});
```
