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

# Get Wallet Balance

> Retrieve current balances across all currency wallets

Returns the current balance for all wallets on your account. All wallet balances are returned regardless of currency.

```
GET /wallet/balance
```

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://api.yativo.com/api/v1/wallet/balance' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "status": "success",
    "status_code": 200,
    "message": "Request successful",
    "data": [
      {
        "name": "USD",
        "slug": "usd",
        "balance": "35585.00",
        "currency": "USD",
        "decimal_places": 2,
        "meta": {
          "logo": "https://cdn.yativo.com/usd.svg",
          "symbol": "$",
          "fullname": "US Dollar",
          "precision": 2
        }
      },
      {
        "name": "BRL",
        "slug": "brl",
        "balance": "14200.00",
        "currency": "BRL",
        "decimal_places": 2,
        "meta": {
          "logo": "https://cdn.yativo.com/brl.svg",
          "symbol": "R$",
          "fullname": "Brazilian Real",
          "precision": "2"
        }
      }
    ]
  }
  ```
</ResponseExample>

***

## Get Total Balance

Returns the sum of all wallet balances converted to USD:

```
GET /wallet/balance/total
```

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://api.yativo.com/api/v1/wallet/balance/total' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "status": "success",
    "status_code": 200,
    "message": "Request successful",
    "data": {
      "total_balance": 37629.18
    }
  }
  ```
</ResponseExample>
