> For the complete documentation index, see [llms.txt](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/wallets/retrieve-wallet-balance.md).

# Retrieve Wallet Balance

Use the `GET /wallets/balance/` endpoint to retrieve the current balance of a user's wallet.

**Parameters**

This endpoint does not require any parameters.

**Responses**

| **Code** | **Description**                                                |
| -------- | -------------------------------------------------------------- |
| 200      | The request was successful. Returns the user's wallet balance. |

**Example Response**

```json
{
  "balance": 1500.50,
  "currency": "USD",
  "last_updated": "2024-12-11T12:34:56Z"
}
```
