> ## Documentation Index
> Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get balance

> Allows the client to retrieve information about the current state of its wallet.

## Overview

Allows the client to retrieve information about the current state of its wallet.

## HTTP request

`POST /Agent/Wallet/GetBalance`

## Authentication

Requires a valid JWT bearer token.

## Request (JSON)

```json theme={null}
{
}
```

## Response (JSON)

```json theme={null}
{
	"amount":Required(Double(PAmount)),
	"reserved":Required(Double(PReserved)),
	"currency":Required(Str(PCurrency)),
	"timestamp":Required(DateTime(PTimestamp))
}
```

## Response parameters

| Parameter  | Description                                      |
| ---------- | ------------------------------------------------ |
| PAmount    | Current amount of eDaler that can be used.       |
| PReserved  | Current amount of eDaler that has been reserved. |
| PCurrency  | Currency of wallet.                              |
| PTimestamp | Timestamp of balance statement.                  |

## Notes

This endpoint uses the request schema notation described in [Pattern matching](/guides/pattern-matching).
