Overview
Sometimes, you need to add parameters (extra information) to your HTTP request to be more specific about what data you want returned.
Tines references
Before getting started, we recommend familiarizing yourself with the surrounding functionality this article covers:
Make it happen
Scenario
Ask for the current price of Bitcoin in US dollars (USD).
In the storyboard, pull in an HTTP Request Action.
Name the action something relevant, like “Get USD Price of Bitcoin.”
Delete the Payload section of the action.
For the URL of the action, type
https://api.coingecko.com/api/v3/simple/price?ids=bitcoin&vs_currencies=usd
. Notice the parameters being passed in the URL after the question mark (?
).Change the Method of the action to
GET
.Click Run to run the action.
See the results in the action’s Events panel!