Package org.knowm.xchange.bitso
Interface Bitso
-
@Path("v2") @Produces("application/json") public interface Bitso- Author:
- Piotr Ładyżyński
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BitsoOrderBookgetOrderBook()Returns "bids" and "asks".BitsoTickergetTicker(String currency)BitsoTransaction[]getTransactions()Returns descending list of transactions.BitsoTransaction[]getTransactions(String time)Returns descending list of transactions.
-
-
-
Method Detail
-
getOrderBook
@GET @Path("order_book/") BitsoOrderBook getOrderBook() throws BitsoException, IOExceptionReturns "bids" and "asks". Each is a list of open orders and each order is represented as a list of price and amount.- Throws:
BitsoExceptionIOException
-
getTicker
@GET @Path("ticker/?book={currency}") BitsoTicker getTicker(@PathParam("currency") String currency) throws BitsoException, IOException- Throws:
BitsoExceptionIOException
-
getTransactions
@GET @Path("transactions/") BitsoTransaction[] getTransactions() throws BitsoException, IOExceptionReturns descending list of transactions.- Throws:
BitsoExceptionIOException
-
getTransactions
@GET @Path("transactions/") BitsoTransaction[] getTransactions(@QueryParam("time") String time) throws BitsoException, IOExceptionReturns descending list of transactions.- Throws:
BitsoExceptionIOException
-
-