com.kucoin.sdk.rest.interfaces.retrofit.HistoryAPIRetrofit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kucoin-java-sdk Show documentation
Show all versions of kucoin-java-sdk Show documentation
Fixed fork of the official Kucoin SDK
The newest version!
/**
* Copyright 2019 Mek Global Limited.
*/
package com.kucoin.sdk.rest.interfaces.retrofit;
import com.kucoin.sdk.rest.response.KucoinResponse;
import com.kucoin.sdk.rest.response.TradeHistoryResponse;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Query;
import java.util.List;
/**
* Created by chenshiwei on 2019/1/22.
*/
public interface HistoryAPIRetrofit {
@GET("api/v1/market/histories")
Call>> getTradeHistories(@Query("symbol") String symbol);
@GET("api/v1/market/candles")
Call>>> getHistoricRates(@Query("symbol") String symbol,
@Query("startAt") long startAt,
@Query("endAt") long endAt,
@Query("type") String type);
}