Cryptocurrency Market Data Provider Application
You will develop a simple webpage using Django to display the attributes of a cryptocurrency and a chart to show the trend of exchange rates of the selected currency against the US Dollar for the past 30 days. Coin API’s market data and cryptocurrencies might need some cleaning before displaying them.
You’ll use these four CoinAPI endpoints in our application:
assets
exchanges
symbols
exchangerate
Note: You’ll make seven different API calls each time the application is loaded, which means that the CoinAPI will deduct a cost of 7 calls from the quota allocated to your API key on each reload.
You need to keep track of your quota. Otherwise, you may need to use another API key or wait for your daily quota to refresh.
We have set up the entire Django application for you. However, we have left placeholders to make API calls from the application, so you won’t see anything useful when initializing the application.
Implement these API calls in the next seven tasks to complete the project.