/xchange-binance/src/main/java/org/knowm/xchange/binance/BinanceAuthenticated.java
http://github.com/timmolter/XChange · Java · 505 lines · 244 code · 23 blank · 238 comment · 0 complexity · c1a1f823164042c16a7fe8af7a2fd203 MD5 · raw file
- package org.knowm.xchange.binance;
- import java.io.IOException;
- import java.math.BigDecimal;
- import java.util.List;
- import java.util.Map;
- import javax.ws.rs.DELETE;
- import javax.ws.rs.FormParam;
- import javax.ws.rs.GET;
- import javax.ws.rs.HeaderParam;
- import javax.ws.rs.POST;
- import javax.ws.rs.PUT;
- import javax.ws.rs.Path;
- import javax.ws.rs.PathParam;
- import javax.ws.rs.Produces;
- import javax.ws.rs.QueryParam;
- import javax.ws.rs.core.MediaType;
- import org.knowm.xchange.binance.dto.BinanceException;
- import org.knowm.xchange.binance.dto.account.*;
- import org.knowm.xchange.binance.dto.trade.BinanceCancelledOrder;
- import org.knowm.xchange.binance.dto.trade.BinanceListenKey;
- import org.knowm.xchange.binance.dto.trade.BinanceNewOrder;
- import org.knowm.xchange.binance.dto.trade.BinanceOrder;
- import org.knowm.xchange.binance.dto.trade.BinanceTrade;
- import org.knowm.xchange.binance.dto.trade.OrderSide;
- import org.knowm.xchange.binance.dto.trade.OrderType;
- import org.knowm.xchange.binance.dto.trade.TimeInForce;
- import si.mazi.rescu.ParamsDigest;
- import si.mazi.rescu.SynchronizedValueFactory;
- @Path("")
- @Produces(MediaType.APPLICATION_JSON)
- public interface BinanceAuthenticated extends Binance {
- String SIGNATURE = "signature";
- String X_MBX_APIKEY = "X-MBX-APIKEY";
- @POST
- @Path("api/v3/order")
- /**
- * Send in a new order
- *
- * @param symbol
- * @param side
- * @param type
- * @param timeInForce
- * @param quantity
- * @param price optional, must be provided for limit orders only
- * @param newClientOrderId optional, a unique id for the order. Automatically generated if not
- * sent.
- * @param stopPrice optional, used with stop orders
- * @param icebergQty optional, used with iceberg orders
- * @param recvWindow optional
- * @param timestamp
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- BinanceNewOrder newOrder(
- @FormParam("symbol") String symbol,
- @FormParam("side") OrderSide side,
- @FormParam("type") OrderType type,
- @FormParam("timeInForce") TimeInForce timeInForce,
- @FormParam("quantity") BigDecimal quantity,
- @FormParam("price") BigDecimal price,
- @FormParam("newClientOrderId") String newClientOrderId,
- @FormParam("stopPrice") BigDecimal stopPrice,
- @FormParam("icebergQty") BigDecimal icebergQty,
- @FormParam("recvWindow") Long recvWindow,
- @FormParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @POST
- @Path("api/v3/order/test")
- /**
- * Test new order creation and signature/recvWindow long. Creates and validates a new order but
- * does not send it into the matching engine.
- *
- * @param symbol
- * @param side
- * @param type
- * @param timeInForce
- * @param quantity
- * @param price
- * @param newClientOrderId optional, a unique id for the order. Automatically generated by
- * default.
- * @param stopPrice optional, used with STOP orders
- * @param icebergQty optional used with icebergOrders
- * @param recvWindow optional
- * @param timestamp
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- Object testNewOrder(
- @FormParam("symbol") String symbol,
- @FormParam("side") OrderSide side,
- @FormParam("type") OrderType type,
- @FormParam("timeInForce") TimeInForce timeInForce,
- @FormParam("quantity") BigDecimal quantity,
- @FormParam("price") BigDecimal price,
- @FormParam("newClientOrderId") String newClientOrderId,
- @FormParam("stopPrice") BigDecimal stopPrice,
- @FormParam("icebergQty") BigDecimal icebergQty,
- @FormParam("recvWindow") Long recvWindow,
- @FormParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @GET
- @Path("api/v3/order")
- /**
- * Check an order's status.<br>
- * Either orderId or origClientOrderId must be sent.
- *
- * @param symbol
- * @param orderId optional
- * @param origClientOrderId optional
- * @param recvWindow optional
- * @param timestamp
- * @param apiKey
- * @param signature
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- BinanceOrder orderStatus(
- @QueryParam("symbol") String symbol,
- @QueryParam("orderId") long orderId,
- @QueryParam("origClientOrderId") String origClientOrderId,
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @DELETE
- @Path("api/v3/order")
- /**
- * Cancel an active order.
- *
- * @param symbol
- * @param orderId optional
- * @param origClientOrderId optional
- * @param newClientOrderId optional, used to uniquely identify this cancel. Automatically
- * generated by default.
- * @param recvWindow optional
- * @param timestamp
- * @param apiKey
- * @param signature
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- BinanceCancelledOrder cancelOrder(
- @QueryParam("symbol") String symbol,
- @QueryParam("orderId") long orderId,
- @QueryParam("origClientOrderId") String origClientOrderId,
- @QueryParam("newClientOrderId") String newClientOrderId,
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @DELETE
- @Path("api/v3/openOrders")
- /**
- * Cancels all active orders on a symbol. This includes OCO orders.
- *
- * @param symbol
- * @param recvWindow optional
- * @param timestamp
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- List<BinanceCancelledOrder> cancelAllOpenOrders(
- @QueryParam("symbol") String symbol,
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @GET
- @Path("api/v3/openOrders")
- /**
- * Get open orders on a symbol.
- *
- * @param symbol optional
- * @param recvWindow optional
- * @param timestamp
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- List<BinanceOrder> openOrders(
- @QueryParam("symbol") String symbol,
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @GET
- @Path("api/v3/allOrders")
- /**
- * Get all account orders; active, canceled, or filled. <br>
- * If orderId is set, it will get orders >= that orderId. Otherwise most recent orders are
- * returned.
- *
- * @param symbol
- * @param orderId optional
- * @param limit optional
- * @param recvWindow optional
- * @param timestamp
- * @param apiKey
- * @param signature
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- List<BinanceOrder> allOrders(
- @QueryParam("symbol") String symbol,
- @QueryParam("orderId") Long orderId,
- @QueryParam("limit") Integer limit,
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @GET
- @Path("api/v3/account")
- /**
- * Get current account information.
- *
- * @param recvWindow optional
- * @param timestamp
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- BinanceAccountInformation account(
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @GET
- @Path("api/v3/myTrades")
- /**
- * Get trades for a specific account and symbol.
- *
- * @param symbol
- * @param startTime optional
- * @param endTime optional
- * @param limit optional, default 500; max 1000.
- * @param fromId optional, tradeId to fetch from. Default gets most recent trades.
- * @param recvWindow optional
- * @param timestamp
- * @param apiKey
- * @param signature
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- List<BinanceTrade> myTrades(
- @QueryParam("symbol") String symbol,
- @QueryParam("limit") Integer limit,
- @QueryParam("startTime") Long startTime,
- @QueryParam("endTime") Long endTime,
- @QueryParam("fromId") Long fromId,
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @POST
- @Path("/sapi/v1/capital/withdraw/apply")
- /**
- * Submit a withdraw request.
- *
- * @param coin
- * @param address
- * @param addressTag optional for Ripple
- * @param amount
- * @param name optional, description of the address
- * @param recvWindow optional
- * @param timestamp
- * @param apiKey
- * @param signature
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- WithdrawResponse withdraw(
- @FormParam("coin") String coin,
- @FormParam("address") String address,
- @FormParam("addressTag") String addressTag,
- @FormParam("amount") BigDecimal amount,
- @FormParam("name") String name,
- @FormParam("recvWindow") Long recvWindow,
- @FormParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @GET
- @Path("/sapi/v1/capital/deposit/hisrec")
- /**
- * Fetch deposit history.
- *
- * @param coin optional
- * @param startTime optional
- * @param endTime optional
- * @param recvWindow optional
- * @param timestamp
- * @param apiKey
- * @param signature
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- List<BinanceDeposit> depositHistory(
- @QueryParam("coin") String coin,
- @QueryParam("startTime") Long startTime,
- @QueryParam("endTime") Long endTime,
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @GET
- @Path("/sapi/v1/capital/withdraw/history")
- /**
- * Fetch withdraw history.
- *
- * @param coin optional
- * @param startTime optional
- * @param endTime optional
- * @param recvWindow optional
- * @param timestamp
- * @param apiKey
- * @param signature
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- List<BinanceWithdraw> withdrawHistory(
- @QueryParam("coin") String coin,
- @QueryParam("startTime") Long startTime,
- @QueryParam("endTime") Long endTime,
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- /**
- * Fetch small amounts of assets exchanged BNB records.
- *
- * @param asset optional
- * @param startTime optional
- * @param endTime optional
- * @param recvWindow optional
- * @param timestamp
- * @param apiKey
- * @param signature
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- @GET
- @Path("/sapi/v1/asset/assetDividend")
- AssetDividendResponse assetDividend(
- @QueryParam("asset") String asset,
- @QueryParam("startTime") Long startTime,
- @QueryParam("endTime") Long endTime,
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @GET
- @Path("/sapi/v1/sub-account/sub/transfer/history")
- List<TransferHistory> transferHistory(
- @QueryParam("fromEmail") String fromEmail,
- @QueryParam("startTime") Long startTime,
- @QueryParam("endTime") Long endTime,
- @QueryParam("page") Integer page,
- @QueryParam("limit") Integer limit,
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @GET
- @Path("/sapi/v1/sub-account/transfer/subUserHistory")
- List<TransferSubUserHistory> transferSubUserHistory(
- @QueryParam("asset") String asset,
- @QueryParam("type") Integer type,
- @QueryParam("startTime") Long startTime,
- @QueryParam("endTime") Long endTime,
- @QueryParam("limit") Integer limit,
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @GET
- @Path("/sapi/v1/capital/deposit/address")
- /**
- * Fetch deposit address.
- *
- * @param coin
- * @param recvWindow
- * @param timestamp
- * @param apiKey
- * @param signature
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- DepositAddress depositAddress(
- @QueryParam("coin") String coin,
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- @GET
- @Path("/sapi/v1/asset/assetDetail")
- /**
- * Fetch asset details.
- *
- * @param recvWindow
- * @param timestamp
- * @param apiKey
- * @param signature
- * @return
- * @throws IOException
- * @throws BinanceException
- */
- Map<String, AssetDetail> assetDetail(
- @QueryParam("recvWindow") Long recvWindow,
- @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
- @HeaderParam(X_MBX_APIKEY) String apiKey,
- @QueryParam(SIGNATURE) ParamsDigest signature)
- throws IOException, BinanceException;
- /**
- * Returns a listen key for websocket login.
- *
- * @param apiKey the api key
- * @return
- * @throws BinanceException
- * @throws IOException
- */
- @POST
- @Path("/api/v3/userDataStream")
- BinanceListenKey startUserDataStream(@HeaderParam(X_MBX_APIKEY) String apiKey)
- throws IOException, BinanceException;
- /**
- * Keeps the authenticated websocket session alive.
- *
- * @param apiKey the api key
- * @param listenKey the api secret
- * @return
- * @throws BinanceException
- * @throws IOException
- */
- @PUT
- @Path("/api/v3/userDataStream?listenKey={listenKey}")
- Map<?, ?> keepAliveUserDataStream(
- @HeaderParam(X_MBX_APIKEY) String apiKey, @PathParam("listenKey") String listenKey)
- throws IOException, BinanceException;
- /**
- * Closes the websocket authenticated connection.
- *
- * @param apiKey the api key
- * @param listenKey the api secret
- * @return
- * @throws BinanceException
- * @throws IOException
- */
- @DELETE
- @Path("/api/v3/userDataStream?listenKey={listenKey}")
- Map<?, ?> closeUserDataStream(
- @HeaderParam(X_MBX_APIKEY) String apiKey, @PathParam("listenKey") String listenKey)
- throws IOException, BinanceException;
- }