> For the complete documentation index, see [llms.txt](https://docs.avascriptions.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.avascriptions.com/developer-service/asc-20/get-asc-20-balance-of-the-address.md).

# Get  ASC-20 Balance Of  The Address

## Get balance of  the address

<mark style="color:green;">`POST`</mark> `https://open-api.avascriptions.com/v1/asc20/balance`

#### Query Parameters

| Name                                      | Type    | Description                                    |
| ----------------------------------------- | ------- | ---------------------------------------------- |
| ticker                                    | string  | Token ticker                                   |
| address<mark style="color:red;">\*</mark> | string  | Address                                        |
| page                                      | integer | Start page, default 1                          |
| limit                                     | integer | Number of token returned, Up to 50, default 50 |

{% tabs %}
{% tab title="200: OK Successful operation" %}

```json
{
  "status": 200,
  "data": {
    "list": [
      {
        "address": "0xaaaaa6972e56c3c12345caaaaaabaaaaa9999999",
        "tick": "avav",
        "amount": "69696969"
      }
    ],
    "total": 1
  }
}
```

{% endtab %}

{% tab title="401: Unauthorized Invalid API Key" %}

{% endtab %}
{% endtabs %}
