> For the complete documentation index, see [llms.txt](https://docs.patascore.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.patascore.com/billing-operations/account-balance.md).

# Account Balance

## Get account balance

<mark style="color:blue;">`GET`</mark> `{{BASE_URL}}/api/v1/account/balance`

This endpoint allows you to get your account balance

#### Headers

| Name                                             | Type   | Description          |
| ------------------------------------------------ | ------ | -------------------- |
| Authentication<mark style="color:red;">\*</mark> | String | Authentication token |

{% tabs %}
{% tab title="200 Balance successfully retrieved." %}

```
{
    "status": 200,
    "message": "Account balance successfully fetched",
    "data": {
        "amount": 5763
    }
}
```

{% endtab %}
{% endtabs %}
