What is anonymous and safe api to get bitcoin Exchange Rates?

0

What is anonymous and safe api to get bitcoin Exchange Rates like BTC/USD and BTC/EUR without trace my ip ?

i used tor service, i search and found blockchain api contain Exchange Rates Feed

http://blockchain.info/ticker

is this secure means if i use this api, can blockchain trace my ip(tor) ?

and how can i use this api in php ?

and if anyone have others api provides bitcoin Exchange Rates Feed please tell me ?

thanks

Dev777

Posted 2014-02-27T22:56:01.403

Reputation: 161

Question was closed 2014-05-06T21:44:38.297

thanks you but i ask about is api like blockchain can trace my ip when i get json file from it ?Dev777 2014-02-27T23:15:16.883

Sure, but as you say you can use Tor with any API if you want to hide your IP address.Greg Hewgill 2014-02-27T23:19:54.290

is there exist api anonymous and safe rather than blockchain api beside i use tor ?Dev777 2014-02-27T23:30:56.250

Answers

1

Any internet service, including an API, will be able to see the IP address the request originated from. It is reasonable to assume that at least in form of some log file, such information gets records by the API provider.

You have already indicated that you use TOR, which should, at least ideally, hide your real IP from the API service by effectively substituting the IP of the TOR exit node you happen to be using. If that achieves your goal depends on your motivation for hiding it in the first place. Note that TOR is not designed for, and likely not capable of, hiding your real IP from someone doing pervasive internet-wide wire sniffing (NSA, maybe?). Such an adversary would be able to simultaneously observe all traffic at all TOR nodes and correlate incoming and outgoing network activity of TOR nodes to potentially determine what your real IP address is.

You didn't specify why you want to hide your IP from whom exactly, and I'm having one of my unimaginative moments where I cannot come up with a likely scenario why it may be important for you to hide the fact that your computer was involved in looking up publicly accessible information where widespread interest for a whole variety of reasons exists anyways. Hence, I can't judge if for your application, this is sufficiently anonymous and safe (as you asked).

All bitcoin exchanges maintain their own public API for their exchange rate and usually lots of other data, even full order books. If you are happy with delayed third-party data, you can indeed also look at e.g. blockchain.info or bitcoincharts.com.

pyramids

Posted 2014-02-27T22:56:01.403

Reputation: 2 978

thanks you, i want hide my ip from site like blockchain that i used api to get exchange rate for bitcoinDev777 2014-02-27T23:53:19.553

That is something that using TOR and not using any API keys or the like should achieve for you. Watch out for any stateful or identifying information your API client or underlying protocols may transmit, though, but most likely you'll achieve everything mentioned when using public http-based APIs that do not require API keys and to where you do not transmit cookies.pyramids 2014-02-28T17:29:33.717

means if i use http to receive json file from blockchain.com to get last exchange rate of bitcoin it still blockchain.com or any website provide can know my ip Although i used Tor or I2pDev777 2014-03-01T23:32:37.307

Well, potentially, if you have a leak for it. For example, on blockchain.info I currently see a cookie (probably from their cdn cloudflare.com, not from blockchain.info itself). With that they potentially already know all your requests came from the same source. Now if you ever make the mistake of transmitting the same cookie when not behind an anonymizing proxy, then, yes, they will know your IP. Shouldn't happen in theory and if you do everything right, but might easily happen in practice.pyramids 2014-03-01T23:49:54.967