Get contract address all data using single query

by using a single query Is that possible by contract address can we get a complete details of that contract address means ex: symbol, image, USD price, 24h change in percentage, 24h volume, market cap, liquidity and etc…

Basic Information Query example -

{
  ethereum(network: bsc) {
    address(address: {is: "0xc9849e6fdb743d08faee3e34dd2d1bc69ea11a51"}) {
      annotation
      address
      smartContract {
        contractType
        attributes{
          type
          name
        }
        currency {
          symbol
          name
          decimals
          tokenType
        }
      }
    }
  }
}

Price

Change 24h

Market cap

Liquidity

hey Gaurav is that possible to write single query to get all these details symbol, image, USD price, 24h change in percentage, 24h volume, market cap, liquidity because if we write a single single query’s and API then you may also know that’s effect on performance, please tell me if it is possible else give me another solution

1 Like

Make this using alias

thank you gaurav , I need USD price, 24h change in percentage, 24h volume, market cap, liquidity these data in “bsc network” and whatever you given query not working for some tokens ex: “0xb63a911ae7dc40510e7bb552b7fcb94c198bbe2d” for this token did’t get a total supply why?

Yes… we don’t have supply for all, we have notified Devs about it.

Ok thank for your support