# Get token holders

**URL:** https://community.bitquery.io/t/get-token-holders/430
**Category:** GraphQL API
**Tags:** closed
**Created:** [August 21, 2021, 2:15am UTC](https://community.bitquery.io/t/get-token-holders/430 "2021-08-21T02:15:35Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![dragonlord](https://avatars.discourse-cdn.com/v4/letter/d/bc8723/32.png) [@dragonlord](https://community.bitquery.io/u/dragonlord)
#### Post date: [August 21, 2021, 2:15am UTC](https://community.bitquery.io/t/get-token-holders/430/1 "2021-08-21T02:15:35Z")

</div>

![image](https://us1.discourse-cdn.com/flex016/uploads/bitquery/original/1X/3eb3857e7b0cd22bc119be7dc6a296bdcdb9be8d.png)

How can i get token holder info for an ERC20 token ?

---

<div class="post-metadata">

### Author: ![sayon](https://avatars.discourse-cdn.com/v4/letter/s/b2d939/32.png) [@sayon](https://community.bitquery.io/u/sayon)
#### Post date: [August 21, 2021, 5:33am UTC](https://community.bitquery.io/t/get-token-holders/430/2 "2021-08-21T05:33:16Z")

</div>

Please go through this link:

> [@Getting all wallet holders of a token on BSC](https://community.bitquery.io/t/getting-all-wallet-holders-of-a-token-on-bsc/64/2):
>
> We don’t have token holder api for now. But here is how you can calculate holders info. First get all the transfers of that token and then check balance of those tokens to get the holders info. Following is an example of getting the transfers of a token. { ethereum(network: bsc) { transfers(options: {desc: "block.timestamp.time", limit: 10, offset: 0}, date: {since: "2021-05-25", till: null}, amount: {gt: 0}, currency: {is: "0xc9849e6fdb743d08faee3e34dd2d1bc69ea11a51"}) { block {…
