Print

Import Metals API Data to Google Sheets

In this guide, we’ll walk through how to pull gold and silver data from the Metals API directly into Google Sheets, using the API Connector add-on for Sheets. We'll first get an API key from Metals-API, and then set up a request to pull in metals 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 Metals-API API Key

  1. If you haven't already, navigate to https://metals-api.com/ and click GET API KEY in the top right corner.
    metalsapi-getkey
  2. You'll be prompted to create an account, if you haven't already. Fill in their registration form and click Sign up.
  3. After verifying your account, and you'll be redirected into your new Metals-API dashboard. Click the Subscription Plan link in the left-hand sidebar and sign up for a subscription plan.
    metalsapi-subscribe
  4. Once you've signed up for a subscription plan, click Dashboard to access your API key. Copy it and keep it safe, we'll need it in a moment. Congrats, you now have access to the Metals API.
    metals-api-img4

Part 2: Pull Metals API Data into Google Sheets

For this example, we'll get the latest price of gold and silver in USD.

  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://metals-api.com/api/latest?base=USD&symbols=XAU,XAG&access_key=YOUR_ACCESS_KEY
  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 latest gold and silver data in your sheet.
    metals-api-img6

Notes:

  • The timestamp is a UNIX timestamp. You can convert it back to a human-readable date by applying the UNIX timestamp formula through API Connector's field editor.
  • 1/rate will give you the price per unit in your selected currency. For example, 1/.00056221356 = 1788.68 USD per ounce of gold.

Part 3: More Example API URLs

You can experiment with endpoints and query strings as described in the documentation to see other types of metals data, but here are some examples to get started:

  • latest conversion rates for a set of currencies against USD. Possible symbols include currencies, crypto coins, and metals, and are listed here: https://metals-api.com/currencies
    https://metals-api.com/api/latest?base=USD&symbols=GBP,JPY,EUR&access_key=API_KEY
  • historical price of gold and silver on 2022-01-01
    https://metals-api.com/api/2022-01-01?base=USD&symbols=XAU,XAG&access_key=API_KEY
  • conversion rate of USD$25 to gold on 2012-01-01
    https://metals-api.com/api/convert?from=USD&to=XAU&amount=25&date=2012-01-01&access_key=API_KEY
  • time-series data for gold between 2023-01-01 and 2023-01-05 (daily time series data ranges are limited to 5 days and a single symbol at a time)
    https://metals-api.com/api/timeseries?base=USD&symbols=XAU&start_date=2023-01-01&end_date=2023-01-05&access_key=API_KEY
  • weekly data fluctuations for gold. The max allowed timeframe is 365 days.
    https://metals-api.com/api/fluctuation?base=USD&symbols=XAU&type=weekly&start_date=2023-01-01&end_date=2023-01-31&access_key=API_KEY

Part 4: API Documentation

Official API documentation: https://metals-api.com/documentation

2 thoughts on “Import Metals API Data to Google Sheets”

Leave a Comment

Jump To