Closed Kiryuumaru closed 2 years ago
Hi, that endpoint is supported, but it's not a public one. Which means that requesting that endpoint will always need an API key/secret. I don't see a way of retrieving the coin name available in the API other than the call you linked.
You could use binanceClient.SpotApi.ExchangeData.GetProductsAsync()
which will contain the data you're looking for. However; this is not an 'official' endpoint, which means it could be changed or removed without any prior notice.
Hi,
Thank you for the fast reply 💪. I see, that endpoint still needs credentials. I thought it is a public one. thank you for the clarification.
Hi,
For those who have the same problem as me, you can get all the names of the coin using the CoinGecko open API endpoint https://api.coingecko.com/api/v3/coins/list And for the Binance icons, you can use the CDN maintained by @VadimMalykhin here https://github.com/VadimMalykhin/binance-icons
Hi,
Thank you for developing this great library 💖. I would like to know if this API endpoint is supported https://binance-docs.github.io/apidocs/spot/en/#all-coins-39-information-user_data I will use this to get every coin
code
andname
(BTC, Bitcoin) without using the API key and API secret. Or is there any other way to get every Binance coincode
andname
without credentials? I am creating a simple list of all available coins in binance with their name