Search API Connector Documentation

Print

Import Nasdaq Data Link Data to Google Sheets

In this guide, we’ll walk through a simple but complete example of how to pull data from the Nasdaq Data Link (rebranded from Quandl in Sep. 2021) API directly into Google Sheets, using the API Connector add-on for Sheets.

We'll first get an API key, and then set up a request to pull in some data to your spreadsheet.

Contents

Before You Begin

Click here to install the API Connector add-on from the Google Marketplace.

Part 1: Get Your Nasdaq Data Link API Key

  1. If you haven't already, sign up for an account at https://data.nasdaq.com/sign-up
  2. To find your API key, navigate to your account settings page at https://data.nasdaq.com/account/api.
    nasdaq-api-key

  3. That's it. You can now access the Nasdaq Data Link API!
  1. Nasdaq provides a huge number of data sets. It's a bit overwhelming, so let's start by narrowing it down with a search. Navigate to https://data.nasdaq.com/search and search for a dataset of interest. Here I entered "bitcoin" and filtered for free data.
    nasdaq-search
  2. The cool thing about Nasdaq Data Link is they provide a lot of examples to get you started. Click into any dataset and then hit Expand.
    nasdaq-expand
  3. Once you click Expand, the right-hand sidebar will contain a section called "API" that contains the request URLs you need to replicate this table in Google Sheets. You can choose any format, but CSV works best in a table, so let's use that.nasdaq-examples-img2
  4. A modal will appear containing the full API request URL. Convenienently, your API key will be included as well.nasdaq-examples-img3
  5. Copy that to your clipboard. We now have our request URL!
https://data.nasdaq.com/api/v3/datasets/BITFINEX/LUNAF0USTF0.csv?api_key=1111111111111111

Part 3: Pull Nasdaq API Data into Google Sheets

Now let's copy and paste that URL into API Connector.

  1. Open up Google Sheets and click Extensions > API Connector > Open > Create request.
  2. In the request form enter the following:
    • ApplicationCustom
    • MethodGET
    • Request URLhttps://data.nasdaq.com/api/v3/datasets/BITFINEX/LUNAF0USTF0.csv?api_key=1111111111111111
  3. Create a new tab and click Set current to use that tab as your data destination.
  4. Name your request and click Run. A moment later you’ll see the table we were just looking at replicated in your sheet.
    nasdaq-results1

Part 4: Get More Nasdaq Data

Besides the Expand tab, the Usage tab also contains sample URLs that can be copied and pasted into API Connector:
nasdaq-examples-img4

Just plug those in and hit Run to see the data in your sheet.

Hopefully this little introduction has given a sense for what's possible with Nasdaq Data Link. They provide many examples for each data set, so you can usually begin by searching for what interests you, pulling out an example API URL, and then modifying it as desired.

Part 5: API Documentation

Official API documentation: https://docs.data.nasdaq.com/docs/getting-started

2 thoughts on “Import Nasdaq Data Link Data to Google Sheets”

  1. Thank You so much for the easy to understand instructions!
    I have no problem pulling the data the first way by selecting expand and copying the URL but when I try to pull the data when under the usage and API section it just imports the code written on that page am I doing something wrong?

    Reply
    • Oh, I see, looks like they've wrapped these particular responses in HTML. Can you please add the following key/value pair under the Headers section? Key = Accept, Value = application/json. That should fix it.

      Reply

Leave a Comment