=GET( )
The GET()
function performs a simple get request, passing parameters in the URL (as part of the path or as query params), and fills one ore more columns in the same row.
It's parameters are listed bellow:
Parameter | Description | Example |
---|---|---|
URL | The URL of the API endpoint you are calling. If you wish to pass parameters in the URL, use | "https://investors-exchange-iex-trading.p.rapidapi.com/stock/{symbol}/book" |
Select Path | This is the part of the returned JSON you want to pull into the sheet. The path should be detonated in JSON dot notation. | "quote.companyName,quote.latestPrice" |
API Key | Your RapidAPI API key. | |
Parameter(s) | For each parameter you wish to supply to the API, you should pass two arguments to the function - the | "symbol","AAPL" |
Updated about 3 years ago