I'll be honest, I'm completely new to using cURL but do have experience using VBA.
I need to find a way to call an API using cURL (or a VBA equivalent), parse the results and pipe it into a cell. I've included an example of the API i need to use below but to be honest, i have no clue where to even start at this point! As i said before, i have experience using VBA but i have never had to call API's through it before so any advice on this would be greatly appreciated!
curl https://url.com/example/example \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $API_KEY" \
-d '{
"param1": "example",
"param2": "example",
"param3": "example",
"param4": "example",
"param5": "example",
"param6": "example",
"stop": ["example"]
}'
Thanks in advance!