# One call for all bsc tokens and prices

**URL:** https://community.bitquery.io/t/one-call-for-all-bsc-tokens-and-prices/1028
**Category:** GraphQL API
**Tags:** closed
**Created:** [May 14, 2022, 5:03pm UTC](https://community.bitquery.io/t/one-call-for-all-bsc-tokens-and-prices/1028 "2022-05-14T17:03:10Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![Raziel90](https://avatars.discourse-cdn.com/v4/letter/r/43a26b/32.png) [@Raziel90](https://community.bitquery.io/u/Raziel90)
#### Post date: [May 14, 2022, 5:03pm UTC](https://community.bitquery.io/t/one-call-for-all-bsc-tokens-and-prices/1028/1 "2022-05-14T17:03:10Z")

</div>

Good evening and sorry, I’ve tried several times to be autonomous, but I’m not good at using GraphQL.  
With a single call, I need the first 200 tokens on BSC, as information on the latter,  
I need the name, the symbol, the address,  
current price and marketcap.  
is it possible to do such a thing or am I asking too much?  
thank you all

---

<div class="post-metadata">

### Author: ![Raziel90](https://avatars.discourse-cdn.com/v4/letter/r/43a26b/32.png) [@Raziel90](https://community.bitquery.io/u/Raziel90)
#### Post date: [May 14, 2022, 5:17pm UTC](https://community.bitquery.io/t/one-call-for-all-bsc-tokens-and-prices/1028/2 "2022-05-14T17:17:04Z")

</div>

i am currently using this code, but it does not give me the marketcap.  
and the volume comparing poocoin does not seem exact to me

```auto
{
    ethereum(network: bsc) {
      list1: dexTrades(
        options: {limitBy: {each: "baseCurrency.symbol", limit: 1}, desc: ["block.timestamp.time", "tradeIndex"]}
        exchangeName: {in: ["Pancake","Pancake v2"]},
        quoteCurrency: {in: ["0x55d398326f99059ff775485246999027b3197955"]}
        time: {since: "2022-05-12T00:00:00"}
      ) {
        baseCurrency {
          address
          symbol
          name
        }
        block {
          height
          timestamp {
            time(format: "%Y-%m-%d %H:%M:%S")
          }
        }
        tradeIndex
        trades: count
        tradeAmount(in: USD)
        quoteAmount
        quotePrice
        quoteCurrency {
          address
          symbol
          name
        }
      }
    }
  }

```

---

<div class="post-metadata">

### Author: ![Raziel90](https://avatars.discourse-cdn.com/v4/letter/r/43a26b/32.png) [@Raziel90](https://community.bitquery.io/u/Raziel90)
#### Post date: [May 14, 2022, 7:09pm UTC](https://community.bitquery.io/t/one-call-for-all-bsc-tokens-and-prices/1028/6 "2022-05-14T19:09:56Z")

</div>

many tokens are missing coinmarketcap

---

<div class="post-metadata">

### Author: ![Mehmet](https://avatars.discourse-cdn.com/v4/letter/m/b4bc9f/32.png) [@Mehmet](https://community.bitquery.io/u/Mehmet)
#### Post date: [May 17, 2022, 9:13am UTC](https://community.bitquery.io/t/one-call-for-all-bsc-tokens-and-prices/1028/7 "2022-05-17T09:13:03Z")

</div>

Continuing the discussion from [One call for all bsc tokens and prices](https://community.bitquery.io/t/one-call-for-all-bsc-tokens-and-prices/1028):

This text will be blurred

---

<div class="post-metadata">

### Author: ![mbajpai](https://avatars.discourse-cdn.com/v4/letter/m/e5b9ba/32.png) [@mbajpai](https://community.bitquery.io/u/mbajpai)
#### Post date: [May 18, 2022, 6:59am UTC](https://community.bitquery.io/t/one-call-for-all-bsc-tokens-and-prices/1028/8 "2022-05-18T06:59:53Z")

</div>

Please refer to the following link  
[Getting token related data such as Marketcap, price, volume, price change - GraphQL Tutorials - Bitquery](https://community.bitquery.io/t/getting-token-related-data-such-as-marketcap-price-volume-price-change/822)

---

<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: [May 21, 2022, 7:42am UTC](https://community.bitquery.io/t/one-call-for-all-bsc-tokens-and-prices/1028/9 "2022-05-21T07:42:42Z")

</div>

You can get this information using this GraphQL query

> **[https://community.bitquery.io/t/one-call-for-all-bsc-tokens-and-prices/1028/7](https://ide.bitquery.io/httpscommunitybitqueryiotone-call-for-all-bsc-tokens-and-prices10287)**
>
> Bitquery is analytical engine for blockchains

To obtain the marketcap you would need to multiply the latest price with the total circulating suppy of a token.

> [@mbajpai](#):
>
> Please refer to the following link  
> [Getting token related data such as Marketcap, price, volume, price change - GraphQL Tutorials - Bitquery](https://community.bitquery.io/t/getting-token-related-data-such-as-marketcap-price-volume-price-change/822)
