Was playing around with getting the order books from the different exchanges for ANC :
These are the API commands I've got so far, all are public and don't require account access:
URL's below return a JSON response string. At least some testing has been done with each of them:
https://cex.io/api/order_book/ANC/BTC http://pubapi.cryptsy.com/api.php?method=singleorderdata&marketid=66https://bleutrade.com/api/v2/public/getorderbook?market=ANC_BTC&type=ALL&depth=99https://api.vircurex.com/api/orderbook.json?base=ANC&alt=BTChttps://www.coins-e.com/api/v2/market/ANC_BTC/depth/*Bleutrade's default of 20 on depth covers the whole orderbook right now, set the depth to 99 in above example, if there is more you can up it.
**The limit on Coins-e may default to 20, haven't figured out how to increase that if the depth goes up, may need to edit this command.
***Didn't see an api for BTC38, it may very well have one.
Catches:
1) You've got to be able to reformat the JSON responses so you can read them.
2) Cryptsy may be the one your most interested in seeing beyond all the small trades, unfortunately
the above URL no longer returns all the orderbook positions. 2 months ago was able to get the
complete order book off Cryptsy this way, now for some reason they are only returning aprox~ what you
can already see depth wise on the buy/sell webpage. Hm there must be a new depth parameter,
if so, I'm not seeing it listed on the API help page. Perhaps you now have to use an account authorized POST
request in order to get a copy of the complete set of buy/sells orders....any ideas?
The exchange list on the anoncoin wiki could be updated to include cex.io, also feel free to grab these links for API access to include on that page if you want.