Interface TradingFeeAPI


@Path("api/v1") @Produces("application/json") public interface TradingFeeAPI
  • Method Details

    • getBaseFee

      @GET @Path("/base-fee") KucoinResponse<TradeFeeResponse> getBaseFee(@HeaderParam("KC-API-KEY") String apiKey, @HeaderParam("KC-API-SIGN") si.mazi.rescu.ParamsDigest signature, @HeaderParam("KC-API-TIMESTAMP") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @HeaderParam("KC-API-PASSPHRASE") String apiPassphrase) throws IOException
      Get basic fee rate of users.
      Returns:
      basic trading fee information
      Throws:
      IOException
    • getTradeFee

      @GET @Path("/trade-fees") KucoinResponse<List<TradeFeeResponse>> getTradeFee(@HeaderParam("KC-API-KEY") String apiKey, @HeaderParam("KC-API-SIGN") si.mazi.rescu.ParamsDigest signature, @HeaderParam("KC-API-TIMESTAMP") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @HeaderParam("KC-API-PASSPHRASE") String apiPassphrase, @QueryParam("symbols") String symbols) throws IOException
      Throws:
      IOException