# Get Wallet Balance

<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 %}
