Package org.knowm.xchange.cryptonit2
Interface CryptonitV2
-
@Path("api") @Produces("application/json") public interface CryptonitV2- Author:
- Matija Mazi See https://www.cryptonit.net/api/ for up-to-date docs.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCryptonitV2.Pair
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CryptonitWithdrawalfiatWithdrawalMethods()CryptonitOrderBookgetOrderBook(CryptonitV2.Pair pair)CryptonitTickergetTicker(CryptonitV2.Pair pair)CryptonitTransaction[]getTransactions(CryptonitV2.Pair pair, CryptonitMarketDataServiceRaw.CryptonitTime time)Returns descending list of transactions.
-
-
-
Method Detail
-
getOrderBook
@GET @Path("order_book/{pair}/") CryptonitOrderBook getOrderBook(@PathParam("pair") CryptonitV2.Pair pair) throws IOException, CryptonitException- Throws:
IOExceptionCryptonitException
-
getTicker
@GET @Path("ticker/{pair}/") CryptonitTicker getTicker(@PathParam("pair") CryptonitV2.Pair pair) throws IOException, CryptonitException- Throws:
IOExceptionCryptonitException
-
getTransactions
@GET @Path("transactions/{pair}/") CryptonitTransaction[] getTransactions(@PathParam("pair") CryptonitV2.Pair pair, @QueryParam("time") CryptonitMarketDataServiceRaw.CryptonitTime time) throws IOException, CryptonitExceptionReturns descending list of transactions.- Throws:
IOExceptionCryptonitException
-
fiatWithdrawalMethods
@GET @Path("/fiat_withdrawal/methods/") CryptonitWithdrawal fiatWithdrawalMethods() throws CryptonitException, IOException- Throws:
CryptonitExceptionIOException
-
-