# balance

### Request

#### Method:&#x20;

`GET ./api/v2/balance`

#### Parameters:

<table><thead><tr><th width="179.32569366693275">Parameter</th><th width="139.23125339579434">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>ownerAddress</code></td><td>string</td><td>Address to fetch token balance details. </td></tr></tbody></table>

#### Request example:

{% tabs %}
{% tab title="HTTP" %}

```bash
curl --header "Authorization: $AUTH_HEADER" \
'https://ny.solana.dex.blxrbdn.com/api/v2/balance'
```

{% endtab %}
{% endtabs %}

### Response:

#### Fields:

<table><thead><tr><th width="206.12060301507535">Fields</th><th width="155.02020202020208">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>tokens</code></td><td>array</td><td>See below for details</td></tr></tbody></table>

<table><thead><tr><th width="206.12060301507535">Fields</th><th width="155.02020202020208">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>symbol</code></td><td>string</td><td>Symbol of the token.</td></tr><tr><td><code>tokenMin</code></td><td>string</td><td>Token program address.</td></tr><tr><td><code>settledAmount</code></td><td>number</td><td>The token amount available. This is what you are looking for in most cases. </td></tr><tr><td><code>unsettledAmount</code></td><td>number</td><td>Token amount which is unsettled. <strong>*Apply only to Openbook.</strong> </td></tr><tr><td><code>openOrderAmount</code></td><td>number</td><td>Token amount which is in open order. <strong>*Apply only to Openbook.</strong> </td></tr></tbody></table>

#### Response Example:

{% tabs %}
{% tab title="JSON" %}

```json
{
   "tokens":[
      {
         "symbol":"SRM",
         "token_mint":"SRMuApVNdxXokk5GT7XD5cUUgXMBCoAz2LHeuAoKWRt",
         "settled_amount":0.0,
         "unsettled_amount":0.0,
         "open_orders_amount":0.0
      },
      {
         "symbol":"SOL",
         "token_mint":"So11111111111111111111111111111111111111112",
         "settled_amount":3.435929722,
         "unsettled_amount":0.0,
         "open_orders_amount":0.0
      }
   ]
}
```

{% endtab %}
{% endtabs %}
