# Account Balance

## Getting the accont balance

<mark style="color:blue;">`GET`</mark> `https://direct.revicom.ltd/api/v1/balance`

The method allows for getting the value of the account balance

#### Headers

| Name                                            | Type   | Description                                                        |
| ----------------------------------------------- | ------ | ------------------------------------------------------------------ |
| Authorization<mark style="color:red;">\*</mark> | string | <p><code>Basic {TOKEN}</code><br>Token of any type can be used</p> |

{% tabs %}
{% tab title="200" %}
In the successful response, the object from the pairs “currency” : “value” is returned.

```
{
  "USD": 1200.00
}
```

{% endtab %}
{% endtabs %}

#### Request example

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

```
GET https://direct.revicom.ltd/api/v1/balance
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
```

{% endtab %}

{% tab title="cURL" %}

```
curl -X GET 'https://direct.revicom.ltd/api/v1/balance' \
-H 'Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=='
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://api.direct.revicom.ltd/extra/balance.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
