get-products analogue

I was using this endpoint (https://www.binance.com/exchange-api/v1/public/asset-service/product/get-products) all the way. Besides usual coin info it had one very valuable block - it had some flags, defining crypto assets. They can be seen in a screenshot attached.

Now this endpoint is showing 404 error. I know that it was not a public endpoint, but it had some very valuable info that was publicly available. One of the most valuable infos was ‘r’ flag showing every user on binance.com (not API, only web page) that this or that asset was ‘risky’

image

Is there any other way to get this info from Binance not scarping it from all the assets web pages at Binance? Maybe it has moved to some public API endpoint?

Thank you

Hi,

There is unfortunately no public endpoint which provides this exact information. However, depending on what type of info you’re after - you can have a look at the Binance API Documentation. Specifically GET /sapi/v1/staking/productList, GET /sapi/v1/lending/auto-invest/target-asset/list and GET /sapi/v1/lending/daily/product/list which will list all the available staking/savings/auto-invest products available. You can also fetch new coin listings from GET /api/v3/exchangeInfo by comparing the output to a local database/file of pairs to see if there are any new pairs in the response.

Hope that helps.