@Path(value="/Public")
@Produces(value="application/json")
public interface Bitbay
| Modifier and Type | Method and Description |
|---|---|
BitbayOrderBook |
getBitbayOrderBook(String currencyPair) |
BitbayTicker |
getBitbayTicker(String currencyPair) |
BitbayTrade[] |
getBitbayTrades(String currencyPair,
long sinceId,
String sort) |
@GET
@Path(value="{currencyPair}/ticker.json")
BitbayTicker getBitbayTicker(@PathParam(value="currencyPair")
String currencyPair)
throws IOException
IOException@GET
@Path(value="{currencyPair}/orderbook.json")
BitbayOrderBook getBitbayOrderBook(@PathParam(value="currencyPair")
String currencyPair)
throws IOException
IOException@GET
@Path(value="{currencyPair}/trades.json")
BitbayTrade[] getBitbayTrades(@PathParam(value="currencyPair")
String currencyPair,
@QueryParam(value="since")
long sinceId,
@QueryParam(value="sort")
String sort)
throws IOException
IOExceptionCopyright © 2012–2018 Knowm Inc.. All rights reserved.