Interface CCEXAuthenticated

All Superinterfaces:
CCEX

@Path("t") @Produces("application/json") public interface CCEXAuthenticated extends CCEX
  • Method Details

    • balances

      @GET @Path("api.html?a=getbalances&apikey={apikey}&nonce={nonce}") CCEXBalancesResponse balances(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException
      Throws:
      IOException
    • getdepositaddress

      @GET @Path("api.html?a=getbalance&apikey={apikey}&nonce={nonce}&currency={currency}") CCEXBalanceResponse getdepositaddress(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @PathParam("currency") String currency) throws IOException
      Throws:
      IOException
    • getopenorders

      @GET @Path("api.html?a=getopenorders&apikey={apikey}&nonce={nonce}") CCEXGetopenordersResponse getopenorders(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException
      Throws:
      IOException
    • getorderhistory

      @GET @Path("api.html?a=getorderhistory&apikey={apikey}&nonce={nonce}") CCEXGetorderhistoryResponse getorderhistory(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException
      Throws:
      IOException
    • cancel

      @GET @Path("api.html?a=cancel&apikey={apikey}&nonce={nonce}&uuid={uuid}") CCEXCancelResponse cancel(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @PathParam("uuid") String uuid) throws IOException
      Throws:
      IOException
    • buylimit

      @GET @Path("api.html?a=buylimit&apikey={apikey}&nonce={nonce}&market={lmarket}-{rmarket}&quantity={quantity}&rate={rate}") CCEXBuySellLimitResponse buylimit(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @PathParam("lmarket") String lmarket, @PathParam("rmarket") String rmarket, @PathParam("quantity") String quantity, @PathParam("rate") String rate) throws IOException
      Throws:
      IOException
    • selllimit

      @GET @Path("api.html?a=selllimit&apikey={apikey}&nonce={nonce}&market={lmarket}-{rmarket}&quantity={quantity}&rate={rate}") CCEXBuySellLimitResponse selllimit(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @PathParam("lmarket") String lmarket, @PathParam("rmarket") String rmarket, @PathParam("quantity") String quantity, @PathParam("rate") String rate) throws IOException
      Throws:
      IOException