> For the complete documentation index, see [llms.txt](https://faq.droam.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://faq.droam.com/menu/webhooks/webhook-payload-models/wallet-model.md).

# 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"
}
```
