Interface Bitbay


@Path("/Public") @Produces("application/json") public interface Bitbay
Author:
kpysniak
  • Method Details

    • getBitbayTicker

      @GET @Path("{currencyPair}/ticker.json") BitbayTicker getBitbayTicker(@PathParam("currencyPair") String currencyPair) throws IOException
      Returns:
      Bitbay ticker
      Throws:
      IOException
    • getBitbayOrderBook

      @GET @Path("{currencyPair}/orderbook.json") BitbayOrderBook getBitbayOrderBook(@PathParam("currencyPair") String currencyPair) throws IOException
      Throws:
      IOException
    • getBitbayTrades

      @GET @Path("{currencyPair}/trades.json") BitbayTrade[] getBitbayTrades(@PathParam("currencyPair") String currencyPair, @QueryParam("since") long sinceId, @QueryParam("sort") String sort, @QueryParam("limit") int limit) throws IOException
      Throws:
      IOException