# Can we get holder count and top 5 holders?

**URL:** https://community.bitquery.io/t/can-we-get-holder-count-and-top-5-holders/486
**Category:** GraphQL API
**Tags:** closed
**Created:** [September 14, 2021, 6:12pm UTC](https://community.bitquery.io/t/can-we-get-holder-count-and-top-5-holders/486 "2021-09-14T18:12:06Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Patriley](https://avatars.discourse-cdn.com/v4/letter/p/c77e96/32.png) [@Patriley](https://community.bitquery.io/u/Patriley)
#### Post date: [September 14, 2021, 6:12pm UTC](https://community.bitquery.io/t/can-we-get-holder-count-and-top-5-holders/486/1 "2021-09-14T18:12:06Z")

</div>

Hey

I have no idea what I am doing but need get the following info and not sure if it is possible

1. total count of holders
2. the top 5 holders and the amount of tokens they have

---

<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: [September 16, 2021, 7:24pm UTC](https://community.bitquery.io/t/can-we-get-holder-count-and-top-5-holders/486/2 "2021-09-16T19:24:17Z")

</div>

Currently, we do not have a token holder API. But this topic guides you with how you can get the holder information of a token

> [@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 {…

---

<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: [September 16, 2021, 7:25pm UTC](https://community.bitquery.io/t/can-we-get-holder-count-and-top-5-holders/486/3 "2021-09-16T19:25:38Z")

</div>

In order to get the holder’s count/number, you can fetch the senders and receivers count as discussed in this topic

> [@Getting all wallet holders of a token on BSC](https://community.bitquery.io/t/getting-all-wallet-holders-of-a-token-on-bsc/64/4):
>
> You cant get total receivers and senders if you want check here
