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

# Get Wallet Balance

This guide is for retrieving all wallets linked to your account

<mark style="color:green;">`GET`</mark> `/view-wallet/{address}`

**Headers**

| Name         | Value              |
| ------------ | ------------------ |
| Content-Type | `application/json` |
| Token        | `<token>`          |

Query Params

| Name                 | Type   | Description                   |
| -------------------- | ------ | ----------------------------- |
| <kbd>`address`</kbd> | string | The wallet address generated. |

**Response**

The response will be in JSON format and contains the following structure

{% tabs %}
{% tab title="Successful" %}

```json
{
    "status": "1",
    "message": "Request was successful",
    "data": {
        "crypto_address": "TL1234aiqsJacvpji9QWMBazeEbTCKHpTN",
        "network": "Tron",
        "symbol": "USDT",
        "actual_balance": 100
    }
}
```

{% endtab %}

{% tab title="Unsuccessful" %}

```json
{
    "status": "0",
    "message": "No Balance(s) found for this address"
}
```

{% endtab %}
{% endtabs %}
