Package org.knowm.xchange.cryptonit2
Interface Cryptonit
-
@Path("api") @Produces("application/json") @Deprecated public interface CryptonitDeprecated.UseCryptonitV2instead.- Author:
- Matija Mazi See https://www.cryptonit.net/api/ for up-to-date docs.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description CryptonitOrderBookgetOrderBook()Deprecated.Returns "bids" and "asks".CryptonitTickergetTicker()Deprecated.CryptonitTransaction[]getTransactions()Deprecated.Returns descending list of transactions.CryptonitTransaction[]getTransactions(String time)Deprecated.Returns descending list of transactions.
-
-
-
Method Detail
-
getOrderBook
@GET @Path("order_book/") CryptonitOrderBook getOrderBook() throws IOExceptionDeprecated.Returns "bids" and "asks". Each is a list of open orders and each order is represented as a list of price and amount.- Throws:
IOException
-
getTicker
@GET @Path("ticker/") CryptonitTicker getTicker() throws IOExceptionDeprecated.- Throws:
IOException
-
getTransactions
@GET @Path("transactions/") CryptonitTransaction[] getTransactions() throws IOExceptionDeprecated.Returns descending list of transactions.- Throws:
IOException
-
getTransactions
@GET @Path("transactions/") CryptonitTransaction[] getTransactions(@QueryParam("time") String time) throws IOExceptionDeprecated.Returns descending list of transactions.- Throws:
IOException
-
-