Monday.com is a popular project management platform. We can use Monday’s API to import data from a Monday account into Google Sheets. In this tutorial, you will learn how to connect the Monday 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
After logging into your Monday account, click on your avatar (picture icon) in the bottom left corner and then select Admin from the resulting menu (this requires you to have admin permissions):
Select the API section and click the Generate link to obtain an “API v2 Token”:
Your API key is now generated. Click the Copy button and then paste your token in a safe location because you will need it in the next steps:
In this section, we’ll show you how to browse the Monday API documentation to find the API URL which retrieves the information you need from your account. If you already know your URL, or if you want to use the same example URL as us, just skip to Step 4.
First, open the Monday API documentation page: https://monday.com/developers/v2#queries-section
The menu on the left contains a list of categories, each with its own endpoints:
If you click on a category (e.g Columns), the page will scroll to a description of that category, followed by a list of its endpoints:
An example endpoint is Column fields, which returns the fields for one or for a collection of columns. The URL for this endpoint is:
https://api.monday.com/v2/
Each endpoint’s documentation contains a short description of its purpose and a list of the accepted parameters. On a darker area on the right, you will find the query for the request’s POST Body:
All API calls to Monday should be made with this base domain: https://api.monday.com/v2/
So all endpoint should be appended to this base URL.
Now 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 POST method.
API URL: In Step 3, we explained how you can find the Monday REST API endpoint that you need. Now copy and paste your complete Monday API URL into the Apipheny add-on, where it says API URL Path, followed by any parameters required for your query (if applicable).
For this example, we are using the Board fields endpoint, which returns specific fields for the board. This is what the whole URL looks like:
https://api.monday.com/v2
Headers: In the Headers section of Apipheny, add two rows with the following keys and values:
Header 1 Key: Content-Type Value: application/json Header 2 Key: Authorization Value: your_token
Make sure to replace your_token with the value of the API key you obtained previously, in Step 2. There should be a space between Bearer and your_token.
POST Body: In this section you should add the following JSON object:
{"query":"{boards(ids:board_id){id, name, state}}"}
Don’t forget to replace board_id with an actual board id.
Here’s what our API request looks like entered into Apipheny:
Finally, the last step is to click the Run button at the bottom of the Apipheny add-on and then wait for the Monday API data to be imported into your Google Sheet. Here’s what our request looked like when completed:
That’s it! You’ve successfully connected your Monday account to Google Sheets using the Monday API, Google Sheets API, and the Apipheny add-on.
After making a successful request to the Monday API, try querying a different Monday API endpoint, or try using one of the more 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?