# How to get burned supply of a token?

**URL:** https://community.bitquery.io/t/how-to-get-burned-supply-of-a-token/1074
**Category:** GraphQL API
**Tags:** closed, support
**Created:** [June 2, 2022, 6:03am UTC](https://community.bitquery.io/t/how-to-get-burned-supply-of-a-token/1074 "2022-06-02T06:03:30Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Bro](https://avatars.discourse-cdn.com/v4/letter/b/47e85d/32.png) [@Bro](https://community.bitquery.io/u/Bro)
#### Post date: [June 2, 2022, 6:03am UTC](https://community.bitquery.io/t/how-to-get-burned-supply-of-a-token/1074/1 "2022-06-02T06:03:30Z")

</div>

How to get burned supply of a token?

I want to get the market cap by using the total supply (minus burned supply) multiplied by current/latest price.

That’s the way poocoin shows it, they include locked but exclude burned, so I’m trying to do the same.

I know poocoin uses Web3 for their market cap data, but I don’t know how to do that and looked at the Web3 website I was provided by someone in here.

If I got market cap without excluded burned then it would be a fully diluted valuation instead of market cap.

Any help? Thank you

---

<div class="post-metadata">

### Author: ![sayon-bitquery](https://sea2.discourse-cdn.com/flex016/user_avatar/community.bitquery.io/sayon-bitquery/32/522_2.png) [@sayon-bitquery](https://community.bitquery.io/u/sayon-bitquery)
#### Post date: [June 5, 2022, 6:48pm UTC](https://community.bitquery.io/t/how-to-get-burned-supply-of-a-token/1074/2 "2022-06-05T18:48:12Z")

</div>

Sorry for the late reply. You can get the BURN supply of a token using a GraphQL query similar to this

> **[Burn Smartcontract Event of BSC token - Blockchain Data API](https://ide.bitquery.io/Burn-Smartcontract-Event-of-BSC-token)**
>
> Bitquery is analytical engine for blockchains

You can get the latest Market Cap of a token using Bitquery through a GraphQL query as shown in this community forum post

> [@Queries Related to a Token](https://community.bitquery.io/t/queries-related-to-a-token/357#last-24-hour-volume-of-tokens-market-cap-6):
>
> Latest Price of a Token The following is a GraphQL query to get the latest price of a token pair with 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c as the baseCurrency and 0xe9e7cea3dedca5984780bafc599bd69add087d56 as the quoteCurrency. { ethereum(network: bsc) { dexTrades( baseCurrency: {is: "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c"} quoteCurrency: {is: "0xe9e7cea3dedca5984780bafc599bd69add087d56"} date: {since: "2021-07-29"} ) { date{ date(format: "%Y…

---

<div class="post-metadata">

### Author: ![Bro](https://avatars.discourse-cdn.com/v4/letter/b/47e85d/32.png) [@Bro](https://community.bitquery.io/u/Bro)
#### Post date: [June 7, 2022, 3:59am UTC](https://community.bitquery.io/t/how-to-get-burned-supply-of-a-token/1074/3 "2022-06-07T03:59:38Z")

</div>

And regarding this burn query you provided, it doesn’t show the total burned supply of a token, it shows multiple burn events according to the block height or something like that.

I want the total sum that was burned by an individual token, like the balance that the burn address holds of the token I input.

As mentioned in my other reply, if possible I’d like to get total supply, total burned and price of a token, all within the same query.

Thx for your help

---

<div class="post-metadata">

### Author: ![sayon-bitquery](https://sea2.discourse-cdn.com/flex016/user_avatar/community.bitquery.io/sayon-bitquery/32/522_2.png) [@sayon-bitquery](https://community.bitquery.io/u/sayon-bitquery)
#### Post date: [June 10, 2022, 5:09am UTC](https://community.bitquery.io/t/how-to-get-burned-supply-of-a-token/1074/4 "2022-06-10T05:09:23Z")

</div>

Please check if this GraphQL query solves your issue

> **[Balance of a BSC token along with it's price](https://graphql.bitquery.io/ide/Balance-of-a-BSC-token-along-with-its-price)**
>
> Bitquery is analytical engine for blockchains
