> For the complete documentation index, see [llms.txt](https://docs.niza.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.niza.io/authenticated-endpoints/balances/spot-wallet.md).

# Spot Wallet

## Spot Wallet Balance

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

Get spot 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": "100000000.000000000",
                "balance_total_in_fiat": "0.00000000"
            },
            "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": "0.00000000",
                "balance_total_in_fiat": "0.00000000"
            },
            "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 %}
