The Apipheny add-on for Google Sheets comes with a built-in feature that lets you reference any cell value in your API request.
Referencing cell values in Apipheny allows you to pull data from a cell(s) on your spreadsheet and use that data in your API request.
To reference single cell values in your Apipheny API request, all you have to do is wrap the sheet name (e.g., Sheet1, Sheet2, Sheet3) and cell value (e.g., A1, B2, C3) in 3 curly brackets, separate by a colon.
Syntax: {{{Sheet1!CellValue}}}
Example: {{{Sheet1!A1}}}
You can reference a single cell value in your API URL, headers, or body.
To reference a range of cell values in your Apipheny API request, follow the same steps as referencing a single, but add an additional colon and cell value, like so:
Syntax: {{{Sheet1!CellValue:CellValue}}}
Example: {{{Sheet1!A1:A10}}}
You can currently reference a range of cell values in your API URL.
https://example.com/api?parameter1={{{sheet1!A1:A10}}}¶meter2={{{sheet1!B1:B10}}}
Please note that Google has limits when using APIs and other services such as formulas and scripts:
Click here for info on Google service quotas.
A google user’s quota can be limited based on the combined amount of activity from things such as scripts, addons, and formulas (eg. GOOGLEFINANCE).
Running a request with a lot of cells referenced can cause you to reach your quota.
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
Before you can reference the cell, you need to know where it is. Locate the cell and record the sheet name and cell value(s).
In the example above, we want to reference the cell that contains “ditto”. The sheet name for that cell is “Pokemon”, and its cell value is “A1”.
The official format for referencing cell values in Apipheny is: {{{SheetName!CellValue}}}
Just take the cell’s sheet name and cell value, separate them with an exclamation point (!), and wrap everything in 3 curly braces {{{x:y}}}.
Then insert that into your API URL, header, or POST Body.
So let’s say our API URL is:
https://pokeapi.co/api/v2/pokemon/ditto
And let’s say we want to insert the last parameter, “ditto”, into our spreadsheet and reference this cell instead of including it directly in our URL.
To reference the cell containing “ditto”, here’s what we’ll use: {{{Pokemon!A1}}}
If we append that to the base URL of the API we’re using, here’s what we’ll get:
https://pokeapi.co/api/v2/pokemon/{{{Pokemon!A1}}}
which is the same as running a request with this URL:
https://pokeapi.co/api/v2/pokemon/ditto
You can even reference a cell containing an API’s base URL to make things even simpler. If we do that using the example above, here’s what we’ll get:
https://{{{Pokemon!A5}}}{{{Pokemon!A1}}}
which is the same URL as before.
After you’re done setting everything up, press Run to send your request to the server.
And that’s it!
Congratulations, you now know how to reference cell values in your Apipheny API requests.
Crypto API Tutorials: