Package org.knowm.xchange.bittrex
Interface Bittrex
- All Known Subinterfaces:
BittrexAuthenticated
@Path("v3")
@Produces("application/json")
public interface Bittrex
-
Method Summary
Modifier and Type Method Description List<BittrexCurrency>
getCurrencies()
List<BittrexSymbol>
getMarkets()
List<BittrexMarketSummary>
getMarketSummaries()
BittrexMarketSummary
getMarketSummary(String marketSymbol)
BittrexDepth
getOrderBook(String marketSymbol, int depth)
BittrexTicker
getTicker(String marketSymbol)
List<BittrexTicker>
getTickers()
List<BittrexTrade>
getTrades(String marketSymbol)
-
Method Details
-
getOrderBook
@GET @Path("markets/{marketSymbol}/orderbook") BittrexDepth getOrderBook(@PathParam("marketSymbol") String marketSymbol, @QueryParam("depth") int depth) throws IOException, BittrexException- Throws:
IOException
BittrexException
-
getMarkets
- Throws:
IOException
BittrexException
-
getCurrencies
- Throws:
IOException
BittrexException
-
getMarketSummary
@GET @Path("markets/{marketSymbol}/summary") BittrexMarketSummary getMarketSummary(@PathParam("marketSymbol") String marketSymbol) throws IOException, BittrexException- Throws:
IOException
BittrexException
-
getMarketSummaries
@GET @Path("markets/summaries") List<BittrexMarketSummary> getMarketSummaries() throws IOException, BittrexException- Throws:
IOException
BittrexException
-
getTickers
- Throws:
IOException
BittrexException
-
getTrades
@GET @Path("markets/{marketSymbol}/trades") List<BittrexTrade> getTrades(@PathParam("marketSymbol") String marketSymbol) throws IOException, BittrexException- Throws:
IOException
BittrexException
-
getTicker
@GET @Path("markets/{marketSymbol}/ticker") BittrexTicker getTicker(@PathParam("marketSymbol") String marketSymbol) throws IOException, BittrexException- Throws:
IOException
BittrexException
-