# Get Supported ERC20 Tokens Balances

## Overview

{% hint style="success" %}

### Endpoint

* **Method:** GET
* **URL:** `/wallet/{address}/{chain}/tokens`
  {% endhint %}

### Parameters

* **`address`**: (Path Parameter): Wallet address (string).
* **`chain`**: (Path Parameter): Blockchain (string). Available values: `polygon`.

### Responses

#### Success (Code 200)

```json
{
  "usdc": "150",
  "usdt": "350"
}
```

* **Media Type**: application/json
* **Example Value**: An object containing the balances of supported ERC20 tokens.

**Internal Server Error (Code 500)**

```json
{
  "error": "Internal Server Error"
}
```

* **Media Type**: application/json
* **Example Value**: An error response indicating an internal server error.

## Usage

1. **Send a GET request** to the `/api/wallet/{address}/{chain}/tokens` endpoint to retrieve the balances of supported ERC20 tokens.
2. **Handle the response accordingly** based on success or internal server error.

**Note:** Ensure the wallet address and blockchain chain are valid.
