> For the complete documentation index, see [llms.txt](https://docs.altura.com/altura-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.altura.com/altura-documentation/js-sdk-reference/get-methods/get-a-users-native-token-balance.md).

# Get a User's Native Token Balance

Use this method to get User's Native Balance (like BNB, ETH, MATIC)&#x20;

### Usage in your script

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

```javascript
const response = await alturaUser.getBalance(CHAIN_ID);

const balance = response.balance;
```

{% endtab %}

{% tab title="TypeScript" %}

```typescript
const response: { balance: boolean} = await alturaUser.getItems(CHAIN_ID);

const balance = response.balance;
```

{% endtab %}
{% endtabs %}

### **Parameters**

<table><thead><tr><th width="236.33333333333331">Parameter</th><th width="129">Type</th><th width="109">Required</th><th>Description</th></tr></thead><tbody><tr><td>COLLECTION_ADDRESS</td><td>string</td><td><strong>YES</strong></td><td>the address of the collection</td></tr><tr><td>TOKEN_ID</td><td>number</td><td><strong>YES</strong></td><td>the item ID</td></tr><tr><td>CHAIN_ID</td><td>number</td><td><strong>YES</strong></td><td>the network ID</td></tr></tbody></table>
