Package org.knowm.xchange.bl3p
Interface Bl3p
- All Known Subinterfaces:
Bl3pAuthenticated
@Path("1")
@Produces("application/json")
public interface Bl3p
-
Method Summary
Modifier and Type Method Description Bl3pOrderBook
getOrderBook(String currency)
Bl3pTicker
getTicker(String currency)
Bl3pTrades
getTrades(String currency)
-
Method Details
-
getTicker
@GET @Path("/{currencyPair}/ticker") Bl3pTicker getTicker(@PathParam("currencyPair") String currency) throws IOException- Throws:
IOException
-
getOrderBook
@GET @Path("/{currencyPair}/orderbook") Bl3pOrderBook getOrderBook(@PathParam("currencyPair") String currency) throws IOException- Throws:
IOException
-
getTrades
@GET @Path("/{currencyPair}/trades") Bl3pTrades getTrades(@PathParam("currencyPair") String currency) throws IOException- Throws:
IOException
-