Js cannot fetch web3 api

  const requestOptions = {
      method: 'GET',
      headers: { 'accept': 'application/json', 'X-API-Key' : 'my key' },
    };
    fetch("https://deep-index.moralis.io/api/v2/erc20/0x292bb969....b45/price?chain=bsc", requestOptions)
    .then(res => res.json())
    .then(
        (result) => {
          console.log(result);
        },
        (error) => {
          console.log(error);
        }
    )

It’s alway return {message: ‘No pools found with enough liquidity, to calculate the price’}.
I test on moralis is ok but fetch in my website is not.
please help

The addess is 0x292bb969737372e48d97c78c19b6a40347c33b45

It looks like this works fine:

curl -X 'GET' \
  'https://deep-index.moralis.io/api/v2/erc20/0xe9e7cea3dedca5984780bafc599bd69add087d56/price?chain=bsc' \
  -H 'accept: application/json' \
  -H 'X-API-Key: API_KEY'

=>

{
  "nativePrice": {
    "value": "2678985131568602",
    "decimals": 18,
    "name": "Binance Coin",
    "symbol": "BNB"
  },
  "usdPrice": 1.0005894353603253,
  "exchangeAddress": "0xcA143Ce32Fe78f1f7019d7d551a6402fC5350c73",
  "exchangeName": "PancakeSwap v2"
}

https://deep-index.moralis.io/api/v2/erc20/0x292bb969737372e48d97c78c19b6a40347c33b45/price?chain=bsc&exchange=pancakeswap2 this works for me

it looks like it works fine if you explicitly specify the exchange as pancakeswap2

we are investigation what is going on