How to get number of transactions of BSC token

Hello, how can I get number of transactions for BSC token? I use graphQL API with python.

We have “Transfers”, a transfer when the currency gets transferred, a transaction can contain more than one transfer. Check the following query to count the number of transfers.

{
  ethereum(network:bsc){
    transfers(currency: {is: "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c"}){
      count
    }
  }
}

Hello and thanks for this, it works pretty good but, now I’m getting error: Query failed and return code is 429. Cannot find what does this code means.

429 is the rate limit error message, please upgrade your plan, check our pricing here.