Posts

How to connect Excel to Coinmarketcap API

avatar of @theexcelclub
25
@theexcelclub
·
0 views
·
5 min read

Using the Coinmarketcap API, you can quickly get live ticker information into your Excel spreadsheet for your favorite cryptocurrency.  With the free API that is available, in this article we will look at how you can connect to this API with Excel and keep your data up to date.

Obtaining a Coinmarketcap API Key

You can register and sign up for an API key here

https://pro.coinmarketcap.com/

The free key will allow you

  • 9 market data endpoints
  • 10K call credit/mo
However, you will not get access to historical data.  If you are using Excel 365 Beta channel and you have the STOCKHISTORY function you can use this to get historical data for the larger cap coins.  However, it is limited in the coins and the function is not yet available to everyone.

Once you have registered, you will be able to access your developer’s dashboard.  This contains the API key you will need.  You will also find a quick link to the API documentation (https://coinmarketcap.com/api/documentation/v1/)


Creating a URL endpoint to connect to with Excel

The base of the API URL endpoint is

https://pro-api.coinmarketcap.com/v1/

We will add more to this URL so we can call call certain data.  The API documentation lists the endpoints, but not all of them are available with the free API.


For our examples we will use the end point /cryptocurrency and for our endpoint paths we will look at /quotes/latest and /listings/latest

https://pro-api.coinmarketcap.com/v1/cryptocurrency/quotes/latest will allow you access to current market information for 1 or more coins.  The default price return is USD and you must use CONVERT to add other exchange rates.

You can find full details on the parameters here https://coinmarketcap.com/api/documentation/v1/#operation/getV1CryptocurrencyQuotesLatest

The parameters allow you to basically filter and define what you want returned.  For example, we want to return information for BTC,LRC,ADA.  As these are coin symbols, we will use the symbol parameter at the end of the API URL.  Each one separated with a comma.

https://pro-api.coinmarketcap.com/v1/cryptocurrency/quotes/latest?symbol=BTC,LRC,ADA

If you need to call more than a few listings as you would do with /quotes/latest, you can use /listing/latest.  This will return a full list, by default the top 100 coins by ranking on coinmarketcap.

https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest

By adding different paths and parameter we can filter this list as required.  You can find all the details of the parameter in the API documentation.

For Example, this URL will return the to 100 showing in BTC.

https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest?convert=btc

And this URL will return only the coins with the tag for Defi

https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest?tag=defi

Once we have created our API endpoints, we can then use these to connect Excel to Coinmarketcap data.

Connecting Excel to the Coinmarketcap API

  1. From the data ribbon, select From Web which can be found in the Get and Transform group of commands. This will open a From Web setup box.
  2. Select Advanced
  3. Enter the API URL endpoint to the first URL parts box
  4. In the HTTP request header parameters(optional) first box enter X-CMC_PRO_API_KEY (you will find this on the Authentication section of the API documentation)
  5. In the HTTP request header parameters(optional) second box enter your API Key and press OK.
  6. Excel will connect to the API and open up the Power Query window. The data is returned in JSON format and we must now extract the data.  To learn more about working with JSON in Excel you can read this article.
  7. Select the row for Data List and click on the word list
  8. This will expand the lists of data. Select To Table from the ribbon and select ok for the default settings in the To table option box.

  1. Next expand the records by clicking on the column header. Select the columns you want to import and deselect Use original column name as prefix and press ok
  2. The new columns of data will expand. However, the quote field will still be a record that we must also expand
  3. Click on the expander in the column header for quote to expand the record.

  1. This opens another record which we much expand again. Click on the expander in the column header and select the columns you want to import
  2. This will import all the selected columns
  3. Carry out any required transformation steps, most notably ensuring all the data types are correct before you load to Excel.
  4. From the home Ribbon select Close and Load to load the data as a table in Excel.

Refresh the data from Coinmarketcap API in Excel

Once all the tables have been loaded into Excel, we can keep these up to date with the latest information.  To update the data, from the data ribbon, select Refresh All.


Conclusion

Connecting to Coinmarketcap API with Excel is a great way to ensure you have the latest pricing information for Bitcoin and your favorite cryptocurrencies.  This article was brief to show you the steps involved in connecting to the API and getting the ticker and current information into Excel.

To look further at the other API points listed in this article and to get some tips on the data transformations required, do check out this video.

SIGN UP FOR OUR NEWSLETTER TODAY – GET EXCEL TIPS TRICKS AND LEARN AND EARN ACTIVITIES TO YOUR INBOX

SIGN UP

Community Invitation

Decentralized and tokenized

Join today

https://youtu.be/_5sXO9H6k6I

Over to you

What coinmarketcap end point do you like to use and why?   Do you have any feedback on this article and video?  If so, don't be shy and drop a comment below

Do you want to start collecting rewards quickly for learning Excel?  Then you should try:

10+ Excel Learn and Earn Activities YOU can do Today

SIGN UP FOR OUR NEWSLETTER TODAY – GET EXCEL TIPS TRICKS AND LEARN AND EARN ACTIVITIES TO YOUR INBOX

SIGN UP


Cross posted from my blog with SteemPress : https://theexcelclub.com/how-to-connect-excel-to-coinmarketcap-api/