Package org.knowm.xchange.bitcoinium
Interface Bitcoinium
-
@Path("/") @Produces("application/json") public interface Bitcoinium
- Author:
- veken0m
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BitcoiniumOrderbook
getDepth(String pair, String orderbookwindow, String apikey)
BitcoiniumTicker
getTicker(String pair, String apikey)
BitcoiniumTickerHistory
getTickerHistory(String pair, String historytimewindow, String apikey)
-
-
-
Method Detail
-
getTicker
@GET @Path("ticker") BitcoiniumTicker getTicker(@QueryParam("pair") String pair, @HeaderParam("X-BITCOINIUM-API-KEY") String apikey) throws IOException
- Throws:
IOException
-
getDepth
@GET @Path("orderbook") BitcoiniumOrderbook getDepth(@QueryParam("pair") String pair, @QueryParam("orderbookwindow") String orderbookwindow, @HeaderParam("X-BITCOINIUM-API-KEY") String apikey) throws IOException
- Throws:
IOException
-
getTickerHistory
@GET @Path("tickerhistory") BitcoiniumTickerHistory getTickerHistory(@QueryParam("pair") String pair, @QueryParam("historytimewindow") String historytimewindow, @HeaderParam("X-BITCOINIUM-API-KEY") String apikey) throws IOException
- Throws:
IOException
-
-