man-c / pycoingecko

Python wrapper for the CoinGecko API
MIT License
1.04k stars 268 forks source link

Get recently added coins #44

Closed safaksonmez closed 3 years ago

safaksonmez commented 3 years ago

Hello is there anyway to get the list of latest coins added ? Basicly I want to see if there is any new coin. https://www.coingecko.com/tr/coins/recently_added What endpoint should I use ?

man-c commented 3 years ago

Hello! I haven't seen any endpoint specific for such info, such as latest coins added to CoinGecko. You could try using the /coins/list endpoint: List all supported coins id, name and symbol (no pagination required) (cg.get_coins_list()) and save locally the list. Then every time you need to check for new coins, you could compared the saved list with a newer instance of the list with all supported coins. Best