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

# Wallet Balance

**Get wallet balance**

Using this endpoint, you can programmatically get wallet balance by specific the coin.

`GET` `https://api.konnadex.com/v1/wallet/balance`

**Query Parameters**

<table><thead><tr><th width="118.3333740234375">Name</th><th width="131.66668701171875">Type</th><th>Description</th></tr></thead><tbody><tr><td>coin*</td><td>String</td><td>The coin balance you want to get, eg <code>USDT, DAI, BUSD, USDC</code></td></tr></tbody></table>

**Headers**

<table><thead><tr><th width="137.6666259765625">Name</th><th width="121.6666259765625">Type</th><th>Description</th></tr></thead><tbody><tr><td>Authorization*</td><td>String</td><td>Bearer YOUR_SECRET_KEY</td></tr></tbody></table>

200: OK Success

```javascript
{
  "message": "Balance retrieved successfully",
  "status": "success",
  "statusCode": 200,
  "data": {
    "coin": "USDT",
    "amount": 100
  }
}
```
