All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.knowm.xchange.kucoin.service.HistoryAPI Maven / Gradle / Ivy

/** Copyright 2019 Mek Global Limited. */
package org.knowm.xchange.kucoin.service;

import java.io.IOException;
import java.util.List;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.MediaType;
import org.knowm.xchange.kucoin.dto.response.KucoinResponse;
import org.knowm.xchange.kucoin.dto.response.TradeHistoryResponse;

/** Based on code by chenshiwei on 2019/1/22. */
@Path("/api/v1/market")
@Produces(MediaType.APPLICATION_JSON)
public interface HistoryAPI {

  /**
   * List the latest trades for a symbol.
   *
   * @param symbol The symbol whose trades should be fetched.
   * @return The trades for the symbol.
   */
  @GET
  @Path("/histories")
  KucoinResponse> getTradeHistories(@QueryParam("symbol") String symbol)
      throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy