Retrieving data from api

mike4777

Board Regular
Joined
Apr 12, 2011
Messages
122
I was wondering if someone could help me retrieve data from an api from http://www.coinapi.io

Does this require VBA? If not, will VBA cause data retrieval to be less sluggish?

I have tried looking online for the answer, but keeping running across complicated vba explanations.
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Yes, this requires VBA, using their REST API. There should be examples of similar API calls on this forum - search for XMLhttp GET POST JSON. You'll also need a VBA JSON parser/converter.
 
Upvote 0
Yes, this requires VBA, using their REST API. There should be examples of similar API calls on this forum - search for XMLhttp GET POST JSON. You'll also need a VBA JSON parser/converter.

Thanks for your reply.

What do you suppose they mean with the other two options? I'm guessing it is for websites and such. I'm trying to pull price data from a particular cryptocurrency at a particular minute whenever I type a new trade into excel. I'm wanting to pull the data into a sheet and then index/match it into place.

APICommunicationDescription
RESTfulRequest-responseStateless API providing the widest range of data, not capable of streaming, only pooling.
WebSocketPublish-subscribeStateful API providing streaming of realtime market data.
FIXPublish-subscribeStateful API providing streaming of realtime market data, widely adopted by the finance industry.

<thead>
</thead><tbody>
</tbody>
 
Upvote 0
The other two options provide realtime streaming for applications. You subscribe to specific data element(s) (currencies, etc.) and it sends updates as they occur.
 
Upvote 0

Forum statistics

Threads
1,214,956
Messages
6,122,465
Members
449,085
Latest member
ExcelError

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top