TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Coinbase – Exchange API

94 pointsby mericssonover 10 years ago

8 comments

clarkmoodyover 10 years ago
After having looked at dozens of Bitcoin exchange APIs, this one was a breath of fresh air.<p>The only other respectable API out there belongs to Kraken [1].<p>[1] <a href="https://www.kraken.com/help/api" rel="nofollow">https:&#x2F;&#x2F;www.kraken.com&#x2F;help&#x2F;api</a>
评论 #8945960 未加载
评论 #8947211 未加载
评论 #8946861 未加载
评论 #8945676 未加载
评论 #8946750 未加载
评论 #8946547 未加载
minimaxover 10 years ago
(Thoughts from someone who works in this space)<p>Exposing _all_ order entry traffic on the public market data feed is not great, especially the part where they expose client generated order uuids on the public feed. This allows market participants to potentially identify other market participants&#x27; orders based on their client order uuids e.g. if they are using a uuid generator that incorporates the MAC address.<p>I think I understand why they are doing this. They want to have a clean REST order entry interface, but still allow participants to know immediately when they are filled (via the websockets feed). Ultimately, they should implement a websockets order entry interface and stream accepts, fills, cancels, and rejects only to the involved participants. They should not expose any client generated ids on the public feeds, and only non-marketable orders and trades should hit the public feed. This is how it works literally everywhere else. Also it wouldn&#x27;t hurt to have time-in-force (IOC, etc) and support for non-displayed orders.
评论 #8947195 未加载
评论 #8947174 未加载
Animatsover 10 years ago
Looks straightforward enough.<p>They note that your trading &#x27;bots should be running on Amazon AWS East for minimum latency. They&#x27;re encouraging high frequency trading. Since they&#x27;re coming up with zero fees, they may have huge &#x27;bot volume. Then they can announce they are the biggest exchange.
评论 #8947600 未加载
评论 #8946175 未加载
评论 #8946085 未加载
mericssonover 10 years ago
Looks like this is the new Coinbase Lunar project being announced tomorrow. <a href="http://www.btcfeed.net/news/coinbases-lunar-announcement-analyzed-will-bitcoins-saviour/" rel="nofollow">http:&#x2F;&#x2F;www.btcfeed.net&#x2F;news&#x2F;coinbases-lunar-announcement-ana...</a>
ceejayozover 10 years ago
I really hate these `position: fixed` left-hand navigations. On my Macbook everything after the &quot;Market Data&quot; section is below the scroll and can&#x27;t be seen.
评论 #8947244 未加载
jsprogrammerover 10 years ago
Why does an exchange, which is based on basic market principles and claims to incorporate a supply and demand (maker vs. taker) model, have a fixed rate vig on half the transactions? Shouldn&#x27;t the vig float and have a mechanism which drives it towards zero?
评论 #8946348 未加载
评论 #8946289 未加载
artursapekover 10 years ago
It looks like it&#x27;s not running yet. I&#x27;m getting a Heroku &quot;No such app&quot; 404.<p><a href="https://api.exchange.coinbase.com/currencies/" rel="nofollow">https:&#x2F;&#x2F;api.exchange.coinbase.com&#x2F;currencies&#x2F;</a>
评论 #8947573 未加载
aristidbover 10 years ago
Nice to have a ASCII-based REST API, but they should also add a proper binary protocol, which does not involve HTTP. Mainly to reduce parsing and encoding times.<p>(This is my personal and not my employer&#x27;s opinion.)