# Balance

## Get Account Balance

<mark style="color:blue;">`GET`</mark> `https://hedera-serverless-consensus.vercel.app/api/account/balance`

This endpoint allows you to get the account balance of the client

#### Headers

| Name      | Type   | Description                                                    |
| --------- | ------ | -------------------------------------------------------------- |
| x-api-key | string | The value set as API\_SECRET\_KEY in the client's environment. |

{% tabs %}
{% tab title="200 Account balance response" %}

```
{
    "data": {
        "balance": "10000"
    }
}
```

{% endtab %}

{% tab title="401 Will ask to include a api-key, if invalid will return with "Unable to validate with the supplied 'x-api-key'"" %}

```
{
    "reason": "Please set \"x-api-key\" in your header"
}
```

{% endtab %}
{% endtabs %}
