{ "message": "No pools found with enough liquidity, to calculate the price" }

in moralis why is it when I
try and get the price for bsc, or bsc testnet, I get this error: { ā€œmessageā€: ā€œNo pools found with enough liquidity, to calculate the priceā€ }.

from moralis import evm_api

api_key = ā€œYOUR_API_KEYā€

params = {
ā€œchainā€: ā€œbscā€,
ā€œincludeā€: ā€œpercent_changeā€,
ā€œexchangeā€: ā€œpancakeswapv2ā€,
ā€œaddressā€: ā€œ0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0ā€
}

result = evm_api.token.get_token_price(
api_key=api_key,
params=params,
)

print(result)

this means that we didn’t find a pool to get the price, and on bsc testnet we don’t have support for token price

Have you rectify the issue ?

for testnet networks we don’t have token prices, that is because there are no liquidity pools there usually, we don’t have plans to add support for token prices for testnet networks