List_of_tickers return me wrong values

for tick in list_of_tickers:
if (tick[‘symbol’][-3:] != ‘BNB’):
continue
else:
max_price = binance_functions.historical_max(tick[‘symbol’])
if max_price <= 0.009:
“save it in database”

The output of this code is some like this:
1|POWRBNB|0.00433
2|GTOBNB|0.000424
3|AIONBNB|0.007618
4|BRDBNB|0.00896
5|BLZBNB|0.008767

But then I go to the webpage and search for example powrbnb and does not exist and blzbnb exist. The point is that the api return me values without sense. I m doing something wrong ?

Though I’m not sure which API you called and how you searched on web, I think you might check on the symbol whose status = BREAK at the moment and it had some transaction happen within 24 hrs. For example, when the symbol status = BREAK, you may not be able to find it from https://www.binance.com/en/markets . Please check the status from this API (GET /api/v3/exchangeInfo ) and verify it.