# (Deprecated) Trade Wallet

## Trade Wallet Balance

<mark style="color:green;">`GET`</mark> `/trade-wallet`

Get Trade wallet balance info

**Headers**

| Name       | Value                 |
| ---------- | --------------------- |
| X-API-Key  | API\_KEY              |
| X-API-Sign | `Generated Signature` |

**Response**

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

```json
{
    "success": true,
    "message": "Request processed successfully",
    "data": [
        {
            "asset_id": "NIZA",
            "asset_name": "Niza Global",
            "type": "crypto",
            "balance": {
                "balance_total": "290768.633106611",
                "balance_total_in_fiat": "5255.34645940"
            },
            "pending": {
                "has_pending": false,
                "balance_pending": "0.000000000",
                "balance_pending_in_fiat": "0.00000000"
            },
            "balance_currency": "USD"
        },
        {
            "asset_id": "USD",
            "asset_name": "Dollar",
            "type": "fiat",
            "balance": {
                "balance_total": "0.00",
                "balance_total_in_fiat": "0.00000000"
            },
            "pending": {
                "has_pending": false,
                "balance_pending": "0.00",
                "balance_pending_in_fiat": "0.00000000"
            },
            "balance_currency": "USD"
        },
        {
            "asset_id": "USDT",
            "asset_name": "Tether USDt",
            "type": "crypto",
            "balance": {
                "balance_total": "10.21718852",
                "balance_total_in_fiat": "10.22368951"
            },
            "pending": {
                "has_pending": false,
                "balance_pending": "0.00000000",
                "balance_pending_in_fiat": "0.00000000"
            },
            "balance_currency": "USD"
        }
    ],
    "code": 200
}
```

{% endtab %}

{% tab title="422" %}

```json
{
  "error": "Invalid Signature"
}
```

{% endtab %}
{% endtabs %}
