Etsy is the global marketplace for unique and creative goods. We can use the Etsy API to import data from Etsy into Google Sheets. In this tutorial, I’ll show you how to connect the Etsy API to Google Sheets in 5 steps:
Apipheny is an API connector for Google Sheets. You can use Apipheny to connect your Google Sheets to unlimited API data sources, make unlimited API requests, and more. There is a 30 day free trial included.
1.) Install Apipheny by opening the following link on desktop and then clicking the Install button in the Google Marketplace: https://apipheny.io/install
2.) After you’ve installed Apipheny, open a Google Sheet and then click on the Extensions dropdown in the menu at the top.
In the dropdown list you should see Apipheny. Click Apipheny then click Import API to open the Apipheny sidebar in your Google Sheet.
Tip: you can open a new Google Sheet by entering this URL in your browser: sheet.new
Go to https://www.etsy.com/developers/register and register an app. Complete all the required fields:
Click the Read Terms and Create App button:
Check the I have read and agree to the Etsy API Terms of Use checkbox, then click the Create App button:
Your app has been created and the KEYSTRING is displayed on the screen. Copy it to a safe location because you’ll need it later.
In this section, we’ll show you how to browse the Etsy API documentation to get an API URL that retrieves the information you need. If you already know your URL, or you want to use the same example URL as us, just skip to Step 4.
First, open the Etsy API documentation page: https://www.etsy.com/developers/documentation
The main section on the page contains the API Reference tab where you will find the API’s endpoints categories:
Clicking on a category scrolls to that API’s section, containing a list of associated endpoints. For instance, the User category API scrolls to an Overview section and the list of its 8 endpoints (they are named methods in the API documentation): findAllUsers, getUser, findAllUsersForTeam, getCirclesContainingUser, getConnectedUser, unconnectUsers, getConnectedUsers and connectUsers.
One of the available endpoints is getUser:
https://openapi.etsy.com/v2/users/:user_id
When calling it, you should replace the :user_id parameter with a real user id value.
This tutorial refers to the endpoints that don’t require OAuth. You could tell if an endpoint requires OAuth by the Requires OAuth field value, which could be Y (Yes) or N (No).
The endpoint’s documentation contains the endpoint name, a short description, the HTTP method used (GET), the URI and a list of accepted parameters, the Requires OAuth field and Permission Scope:
All API calls to Etsy should be made to the base domain: https://openapi.etsy.com/v2/…
This means any endpoint should be appended to this URL (replacing the three dots).
Note: Some endpoints require OAuth but we have not tested these endpoints ourselves. If you want to obtain an OAuth token it requires PHP and you need to follow the instructions on this page: https://www.etsy.com/developers/documentation/getting_started/oauth. If you obtain the OAuth token, then you can use it in your requests (with the endpoints that need OAuth).
Go back to your Google Sheet and make sure that the Apipheny add-on is open on the “Import” tab.
With the Import Tab open, enter these details into the add-on:
Method: At the top of the Apipheny sidebar, select the HTTP method (GET or POST) required by your API endpoint. For this example, we are using the GET method.
API URL: In Step 3, we explained how you can find the Etsy API endpoint that you need. Now copy the complete URL into the Apipheny add-on, where it says API URL Path, followed by any GET parameters required for your query.
For this example, we are using the Listing API endpoint, along with active state to get the listings that are currently for sale:
https://openapi.etsy.com/v2/listings/active?api_key=API_key
If you use this same url, don’t forget to replace API_key with your previously obtained API key.
Headers aren’t required, you can leave those fields blank in Apipheny.
Click the Run button at the bottom of the Apipheny add-on and then wait for the Etsy API data to be retrieved and added to your Google spreadsheet:
After making a successful request to the Etsy API, try querying a different endpoint, or try using one of the advanced features in the Apipheny add-on.
Make a GET request
Make a POST request
PUT, PATCH, & DELETE Requests
Save requests for later
Schedule requests for automatic updates
Reference cell values in requests
=APIPHENY custom function
Stack multiple URLs in a single request
Run all saved requests at once
Modify your request settings
Import & export saved API settings
Ahrefs API
Airtable API
Alpha Vantage API
Asana API
Binance API
Clickup API
Coingecko API
Coinmarketcap API
Coinbase API
Constant Contact API
Discord API
Drift API
Etsy API
Eventbrite API
Facebook Graph API
Facebook Ads API
Figma API
Github API
Google SERP API
Hubspot API
Hunter API
What is an API?
What is an API URL?
What are parameters?
What is an endpoint?
What is an API key/token?
What is basic authentication?
What are headers?
What is a GET request?
What is a POST request?