# Wallet Model

The Wallet Model is a model that displays the wallet balance and currency of a specific account. Its fields are presented in the table (Table 4.5), with an example below (Listing 4.4).&#x20;

**Table 4.5 – Fields of Wallet Model**&#x20;

<table><thead><tr><th width="65">№</th><th width="176">Key </th><th width="88">Type </th><th width="103">Exists </th><th>Description </th></tr></thead><tbody><tr><td>1</td><td>remaining_balance</td><td>float </td><td>required </td><td>Remaining founds, 2 decimals</td></tr><tr><td>2</td><td>currency_code</td><td>string </td><td>required </td><td>Balance currency. “EUR”, “USD”, etc.</td></tr></tbody></table>

**Listing 4.4 – Example of Wallet Model (JSON)**

```
{
    "remaining_balance":   "52.99",
    "currency_code":       "EUR"
}
```


---

# 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://faq.droam.com/menu/webhooks/webhook-payload-models/wallet-model.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.
