Home > Software engineering >  Scraping total market cap of crypto market
Scraping total market cap of crypto market

Time:11-28

I'm trying to access the data shown in the "Total cryptocurrency market cap" chart at https://coinmarketcap.com/charts/ Is there a way to scrape this data or access it from some (free/public) API?

I have tried to inspect the HTML but could not figure out how they get the data. I have also looked at the API at Coinmarketcap but paying about $400 just to access this data is not a viable option.

CodePudding user response:

access the chart underlying data and get the infos from this for example

https://api.coinmarketcap.com/data-api/v3/global-metrics/quotes/historical?format=chart&interval=2d&timeEnd=1669590000&timeStart=2013-04-28

  • Related