# Get Account Balance

## Get Account Balance

<mark style="color:green;">**`GET`**</mark> `/v1/account/balances`

This API will return the account's balance and total sales.

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <idToken>` |

**Response**

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

```json
{
"payload": {
    "balance": "24325.00",
    "sales": "675.00"
    }
}
```

{% endtab %}
{% endtabs %}
