I am currently testing the āGet DEX token pair reservesā endpoint, and in 80% of cases, the reserves data for Uni v3 pairs is not returned. Instead, I receive the following response:
{
āmessageā: āNo reserves data found for pairā
}
from moralis import evm_api
api_key = "My API KEY"
params = {
"chain": "eth",
"pair_address": "0x331399c614ca67dee86733e5a2fba40dbb16827c"
}
result = evm_api.defi.get_pair_reserves(
api_key=api_key,
params=params,
)
print(result)