
com.xeiam.xchange.bitmarket.BitMarket Maven / Gradle / Ivy
package com.xeiam.xchange.bitmarket;
import java.io.IOException;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import com.xeiam.xchange.bitmarket.dto.marketdata.BitMarketOrderBook;
import com.xeiam.xchange.bitmarket.dto.marketdata.BitMarketTicker;
import com.xeiam.xchange.bitmarket.dto.marketdata.BitMarketTrade;
/**
* @author kpysniak
*/
@Path("json")
@Produces(MediaType.APPLICATION_JSON)
public interface BitMarket {
/**
* @return BTCCentral ticker
* @throws IOException
*/
@GET
@Path("{currencyPair}/ticker.json")
public BitMarketTicker getTicker(@PathParam("currencyPair") String currency) throws IOException;
@GET
@Path("{currencyPair}/orderbook.json")
public BitMarketOrderBook getOrderBook(@PathParam("currencyPair") String currency) throws IOException;
@GET
@Path("{currencyPair}/trades.json")
public BitMarketTrade[] getTrades(@PathParam("currencyPair") String currency) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy