# User Balance

### RETURNS CURRENT USER'S HEDERA ACCOUNT BALANCE

## Returns user

<mark style="color:blue;">`GET`</mark> `/accounts/balance`

Requests current Hedera account balance

{% tabs %}
{% tab title="200: OK Successful Operation" %}

```javascript
{
    content:
            application/json:
              schema:
                type: object
                properties:
                  balance:
                    type: number
                  unit:
                    type: string
                  user:
                    type: object
                    properties:
                      username:
                        type: string
                      did:
                        type: string
}
```

{% endtab %}

{% tab title="500: Internal Server Error Internal Server Error" %}

```javascript
{
    content:
            application/json:
              schema:
}
```

{% endtab %}
{% endtabs %}
