# Vault Information

## Required Parameters

- **vault_address**: Vault address  
- **address**: Address of the depositor

## Responses

### `200 Success`

```json
{
  "data": {
    "token_balance": "114781689324",
    "asset_balance": "119399097449",
    "asset_symbol": "MUSDC",
    "requested_shares_of": "2014000600",
    "requested_assets_of": "2091559517",
    "exchange_rate": "1040227741482692591"
  }
}
```

### `404 Vault not found`

### `422 Invalid address`

## Example Request

```shell
curl --request GET \
     --url https://api.figment.io/opentrade/vaults/vault_address/balances/address \
     --header 'accept: application/json' \
     --header 'x-api-key: your-api-key-here'
```
