/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

  1. package org.knowm.xchange.binance;
  2. import java.io.IOException;
  3. import java.math.BigDecimal;
  4. import java.util.List;
  5. import java.util.Map;
  6. import javax.ws.rs.DELETE;
  7. import javax.ws.rs.FormParam;
  8. import javax.ws.rs.GET;
  9. import javax.ws.rs.HeaderParam;
  10. import javax.ws.rs.POST;
  11. import javax.ws.rs.PUT;
  12. import javax.ws.rs.Path;
  13. import javax.ws.rs.PathParam;
  14. import javax.ws.rs.Produces;
  15. import javax.ws.rs.QueryParam;
  16. import javax.ws.rs.core.MediaType;
  17. import org.knowm.xchange.binance.dto.BinanceException;
  18. import org.knowm.xchange.binance.dto.account.*;
  19. import org.knowm.xchange.binance.dto.trade.BinanceCancelledOrder;
  20. import org.knowm.xchange.binance.dto.trade.BinanceListenKey;
  21. import org.knowm.xchange.binance.dto.trade.BinanceNewOrder;
  22. import org.knowm.xchange.binance.dto.trade.BinanceOrder;
  23. import org.knowm.xchange.binance.dto.trade.BinanceTrade;
  24. import org.knowm.xchange.binance.dto.trade.OrderSide;
  25. import org.knowm.xchange.binance.dto.trade.OrderType;
  26. import org.knowm.xchange.binance.dto.trade.TimeInForce;
  27. import si.mazi.rescu.ParamsDigest;
  28. import si.mazi.rescu.SynchronizedValueFactory;
  29. @Path("")
  30. @Produces(MediaType.APPLICATION_JSON)
  31. public interface BinanceAuthenticated extends Binance {
  32. String SIGNATURE = "signature";
  33. String X_MBX_APIKEY = "X-MBX-APIKEY";
  34. @POST
  35. @Path("api/v3/order")
  36. /**
  37. * Send in a new order
  38. *
  39. * @param symbol
  40. * @param side
  41. * @param type
  42. * @param timeInForce
  43. * @param quantity
  44. * @param price optional, must be provided for limit orders only
  45. * @param newClientOrderId optional, a unique id for the order. Automatically generated if not
  46. * sent.
  47. * @param stopPrice optional, used with stop orders
  48. * @param icebergQty optional, used with iceberg orders
  49. * @param recvWindow optional
  50. * @param timestamp
  51. * @return
  52. * @throws IOException
  53. * @throws BinanceException
  54. */
  55. BinanceNewOrder newOrder(
  56. @FormParam("symbol") String symbol,
  57. @FormParam("side") OrderSide side,
  58. @FormParam("type") OrderType type,
  59. @FormParam("timeInForce") TimeInForce timeInForce,
  60. @FormParam("quantity") BigDecimal quantity,
  61. @FormParam("price") BigDecimal price,
  62. @FormParam("newClientOrderId") String newClientOrderId,
  63. @FormParam("stopPrice") BigDecimal stopPrice,
  64. @FormParam("icebergQty") BigDecimal icebergQty,
  65. @FormParam("recvWindow") Long recvWindow,
  66. @FormParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  67. @HeaderParam(X_MBX_APIKEY) String apiKey,
  68. @QueryParam(SIGNATURE) ParamsDigest signature)
  69. throws IOException, BinanceException;
  70. @POST
  71. @Path("api/v3/order/test")
  72. /**
  73. * Test new order creation and signature/recvWindow long. Creates and validates a new order but
  74. * does not send it into the matching engine.
  75. *
  76. * @param symbol
  77. * @param side
  78. * @param type
  79. * @param timeInForce
  80. * @param quantity
  81. * @param price
  82. * @param newClientOrderId optional, a unique id for the order. Automatically generated by
  83. * default.
  84. * @param stopPrice optional, used with STOP orders
  85. * @param icebergQty optional used with icebergOrders
  86. * @param recvWindow optional
  87. * @param timestamp
  88. * @return
  89. * @throws IOException
  90. * @throws BinanceException
  91. */
  92. Object testNewOrder(
  93. @FormParam("symbol") String symbol,
  94. @FormParam("side") OrderSide side,
  95. @FormParam("type") OrderType type,
  96. @FormParam("timeInForce") TimeInForce timeInForce,
  97. @FormParam("quantity") BigDecimal quantity,
  98. @FormParam("price") BigDecimal price,
  99. @FormParam("newClientOrderId") String newClientOrderId,
  100. @FormParam("stopPrice") BigDecimal stopPrice,
  101. @FormParam("icebergQty") BigDecimal icebergQty,
  102. @FormParam("recvWindow") Long recvWindow,
  103. @FormParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  104. @HeaderParam(X_MBX_APIKEY) String apiKey,
  105. @QueryParam(SIGNATURE) ParamsDigest signature)
  106. throws IOException, BinanceException;
  107. @GET
  108. @Path("api/v3/order")
  109. /**
  110. * Check an order's status.<br>
  111. * Either orderId or origClientOrderId must be sent.
  112. *
  113. * @param symbol
  114. * @param orderId optional
  115. * @param origClientOrderId optional
  116. * @param recvWindow optional
  117. * @param timestamp
  118. * @param apiKey
  119. * @param signature
  120. * @return
  121. * @throws IOException
  122. * @throws BinanceException
  123. */
  124. BinanceOrder orderStatus(
  125. @QueryParam("symbol") String symbol,
  126. @QueryParam("orderId") long orderId,
  127. @QueryParam("origClientOrderId") String origClientOrderId,
  128. @QueryParam("recvWindow") Long recvWindow,
  129. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  130. @HeaderParam(X_MBX_APIKEY) String apiKey,
  131. @QueryParam(SIGNATURE) ParamsDigest signature)
  132. throws IOException, BinanceException;
  133. @DELETE
  134. @Path("api/v3/order")
  135. /**
  136. * Cancel an active order.
  137. *
  138. * @param symbol
  139. * @param orderId optional
  140. * @param origClientOrderId optional
  141. * @param newClientOrderId optional, used to uniquely identify this cancel. Automatically
  142. * generated by default.
  143. * @param recvWindow optional
  144. * @param timestamp
  145. * @param apiKey
  146. * @param signature
  147. * @return
  148. * @throws IOException
  149. * @throws BinanceException
  150. */
  151. BinanceCancelledOrder cancelOrder(
  152. @QueryParam("symbol") String symbol,
  153. @QueryParam("orderId") long orderId,
  154. @QueryParam("origClientOrderId") String origClientOrderId,
  155. @QueryParam("newClientOrderId") String newClientOrderId,
  156. @QueryParam("recvWindow") Long recvWindow,
  157. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  158. @HeaderParam(X_MBX_APIKEY) String apiKey,
  159. @QueryParam(SIGNATURE) ParamsDigest signature)
  160. throws IOException, BinanceException;
  161. @DELETE
  162. @Path("api/v3/openOrders")
  163. /**
  164. * Cancels all active orders on a symbol. This includes OCO orders.
  165. *
  166. * @param symbol
  167. * @param recvWindow optional
  168. * @param timestamp
  169. * @return
  170. * @throws IOException
  171. * @throws BinanceException
  172. */
  173. List<BinanceCancelledOrder> cancelAllOpenOrders(
  174. @QueryParam("symbol") String symbol,
  175. @QueryParam("recvWindow") Long recvWindow,
  176. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  177. @HeaderParam(X_MBX_APIKEY) String apiKey,
  178. @QueryParam(SIGNATURE) ParamsDigest signature)
  179. throws IOException, BinanceException;
  180. @GET
  181. @Path("api/v3/openOrders")
  182. /**
  183. * Get open orders on a symbol.
  184. *
  185. * @param symbol optional
  186. * @param recvWindow optional
  187. * @param timestamp
  188. * @return
  189. * @throws IOException
  190. * @throws BinanceException
  191. */
  192. List<BinanceOrder> openOrders(
  193. @QueryParam("symbol") String symbol,
  194. @QueryParam("recvWindow") Long recvWindow,
  195. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  196. @HeaderParam(X_MBX_APIKEY) String apiKey,
  197. @QueryParam(SIGNATURE) ParamsDigest signature)
  198. throws IOException, BinanceException;
  199. @GET
  200. @Path("api/v3/allOrders")
  201. /**
  202. * Get all account orders; active, canceled, or filled. <br>
  203. * If orderId is set, it will get orders >= that orderId. Otherwise most recent orders are
  204. * returned.
  205. *
  206. * @param symbol
  207. * @param orderId optional
  208. * @param limit optional
  209. * @param recvWindow optional
  210. * @param timestamp
  211. * @param apiKey
  212. * @param signature
  213. * @return
  214. * @throws IOException
  215. * @throws BinanceException
  216. */
  217. List<BinanceOrder> allOrders(
  218. @QueryParam("symbol") String symbol,
  219. @QueryParam("orderId") Long orderId,
  220. @QueryParam("limit") Integer limit,
  221. @QueryParam("recvWindow") Long recvWindow,
  222. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  223. @HeaderParam(X_MBX_APIKEY) String apiKey,
  224. @QueryParam(SIGNATURE) ParamsDigest signature)
  225. throws IOException, BinanceException;
  226. @GET
  227. @Path("api/v3/account")
  228. /**
  229. * Get current account information.
  230. *
  231. * @param recvWindow optional
  232. * @param timestamp
  233. * @return
  234. * @throws IOException
  235. * @throws BinanceException
  236. */
  237. BinanceAccountInformation account(
  238. @QueryParam("recvWindow") Long recvWindow,
  239. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  240. @HeaderParam(X_MBX_APIKEY) String apiKey,
  241. @QueryParam(SIGNATURE) ParamsDigest signature)
  242. throws IOException, BinanceException;
  243. @GET
  244. @Path("api/v3/myTrades")
  245. /**
  246. * Get trades for a specific account and symbol.
  247. *
  248. * @param symbol
  249. * @param startTime optional
  250. * @param endTime optional
  251. * @param limit optional, default 500; max 1000.
  252. * @param fromId optional, tradeId to fetch from. Default gets most recent trades.
  253. * @param recvWindow optional
  254. * @param timestamp
  255. * @param apiKey
  256. * @param signature
  257. * @return
  258. * @throws IOException
  259. * @throws BinanceException
  260. */
  261. List<BinanceTrade> myTrades(
  262. @QueryParam("symbol") String symbol,
  263. @QueryParam("limit") Integer limit,
  264. @QueryParam("startTime") Long startTime,
  265. @QueryParam("endTime") Long endTime,
  266. @QueryParam("fromId") Long fromId,
  267. @QueryParam("recvWindow") Long recvWindow,
  268. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  269. @HeaderParam(X_MBX_APIKEY) String apiKey,
  270. @QueryParam(SIGNATURE) ParamsDigest signature)
  271. throws IOException, BinanceException;
  272. @POST
  273. @Path("/sapi/v1/capital/withdraw/apply")
  274. /**
  275. * Submit a withdraw request.
  276. *
  277. * @param coin
  278. * @param address
  279. * @param addressTag optional for Ripple
  280. * @param amount
  281. * @param name optional, description of the address
  282. * @param recvWindow optional
  283. * @param timestamp
  284. * @param apiKey
  285. * @param signature
  286. * @return
  287. * @throws IOException
  288. * @throws BinanceException
  289. */
  290. WithdrawResponse withdraw(
  291. @FormParam("coin") String coin,
  292. @FormParam("address") String address,
  293. @FormParam("addressTag") String addressTag,
  294. @FormParam("amount") BigDecimal amount,
  295. @FormParam("name") String name,
  296. @FormParam("recvWindow") Long recvWindow,
  297. @FormParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  298. @HeaderParam(X_MBX_APIKEY) String apiKey,
  299. @QueryParam(SIGNATURE) ParamsDigest signature)
  300. throws IOException, BinanceException;
  301. @GET
  302. @Path("/sapi/v1/capital/deposit/hisrec")
  303. /**
  304. * Fetch deposit history.
  305. *
  306. * @param coin optional
  307. * @param startTime optional
  308. * @param endTime optional
  309. * @param recvWindow optional
  310. * @param timestamp
  311. * @param apiKey
  312. * @param signature
  313. * @return
  314. * @throws IOException
  315. * @throws BinanceException
  316. */
  317. List<BinanceDeposit> depositHistory(
  318. @QueryParam("coin") String coin,
  319. @QueryParam("startTime") Long startTime,
  320. @QueryParam("endTime") Long endTime,
  321. @QueryParam("recvWindow") Long recvWindow,
  322. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  323. @HeaderParam(X_MBX_APIKEY) String apiKey,
  324. @QueryParam(SIGNATURE) ParamsDigest signature)
  325. throws IOException, BinanceException;
  326. @GET
  327. @Path("/sapi/v1/capital/withdraw/history")
  328. /**
  329. * Fetch withdraw history.
  330. *
  331. * @param coin optional
  332. * @param startTime optional
  333. * @param endTime optional
  334. * @param recvWindow optional
  335. * @param timestamp
  336. * @param apiKey
  337. * @param signature
  338. * @return
  339. * @throws IOException
  340. * @throws BinanceException
  341. */
  342. List<BinanceWithdraw> withdrawHistory(
  343. @QueryParam("coin") String coin,
  344. @QueryParam("startTime") Long startTime,
  345. @QueryParam("endTime") Long endTime,
  346. @QueryParam("recvWindow") Long recvWindow,
  347. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  348. @HeaderParam(X_MBX_APIKEY) String apiKey,
  349. @QueryParam(SIGNATURE) ParamsDigest signature)
  350. throws IOException, BinanceException;
  351. /**
  352. * Fetch small amounts of assets exchanged BNB records.
  353. *
  354. * @param asset optional
  355. * @param startTime optional
  356. * @param endTime optional
  357. * @param recvWindow optional
  358. * @param timestamp
  359. * @param apiKey
  360. * @param signature
  361. * @return
  362. * @throws IOException
  363. * @throws BinanceException
  364. */
  365. @GET
  366. @Path("/sapi/v1/asset/assetDividend")
  367. AssetDividendResponse assetDividend(
  368. @QueryParam("asset") String asset,
  369. @QueryParam("startTime") Long startTime,
  370. @QueryParam("endTime") Long endTime,
  371. @QueryParam("recvWindow") Long recvWindow,
  372. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  373. @HeaderParam(X_MBX_APIKEY) String apiKey,
  374. @QueryParam(SIGNATURE) ParamsDigest signature)
  375. throws IOException, BinanceException;
  376. @GET
  377. @Path("/sapi/v1/sub-account/sub/transfer/history")
  378. List<TransferHistory> transferHistory(
  379. @QueryParam("fromEmail") String fromEmail,
  380. @QueryParam("startTime") Long startTime,
  381. @QueryParam("endTime") Long endTime,
  382. @QueryParam("page") Integer page,
  383. @QueryParam("limit") Integer limit,
  384. @QueryParam("recvWindow") Long recvWindow,
  385. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  386. @HeaderParam(X_MBX_APIKEY) String apiKey,
  387. @QueryParam(SIGNATURE) ParamsDigest signature)
  388. throws IOException, BinanceException;
  389. @GET
  390. @Path("/sapi/v1/sub-account/transfer/subUserHistory")
  391. List<TransferSubUserHistory> transferSubUserHistory(
  392. @QueryParam("asset") String asset,
  393. @QueryParam("type") Integer type,
  394. @QueryParam("startTime") Long startTime,
  395. @QueryParam("endTime") Long endTime,
  396. @QueryParam("limit") Integer limit,
  397. @QueryParam("recvWindow") Long recvWindow,
  398. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  399. @HeaderParam(X_MBX_APIKEY) String apiKey,
  400. @QueryParam(SIGNATURE) ParamsDigest signature)
  401. throws IOException, BinanceException;
  402. @GET
  403. @Path("/sapi/v1/capital/deposit/address")
  404. /**
  405. * Fetch deposit address.
  406. *
  407. * @param coin
  408. * @param recvWindow
  409. * @param timestamp
  410. * @param apiKey
  411. * @param signature
  412. * @return
  413. * @throws IOException
  414. * @throws BinanceException
  415. */
  416. DepositAddress depositAddress(
  417. @QueryParam("coin") String coin,
  418. @QueryParam("recvWindow") Long recvWindow,
  419. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  420. @HeaderParam(X_MBX_APIKEY) String apiKey,
  421. @QueryParam(SIGNATURE) ParamsDigest signature)
  422. throws IOException, BinanceException;
  423. @GET
  424. @Path("/sapi/v1/asset/assetDetail")
  425. /**
  426. * Fetch asset details.
  427. *
  428. * @param recvWindow
  429. * @param timestamp
  430. * @param apiKey
  431. * @param signature
  432. * @return
  433. * @throws IOException
  434. * @throws BinanceException
  435. */
  436. Map<String, AssetDetail> assetDetail(
  437. @QueryParam("recvWindow") Long recvWindow,
  438. @QueryParam("timestamp") SynchronizedValueFactory<Long> timestamp,
  439. @HeaderParam(X_MBX_APIKEY) String apiKey,
  440. @QueryParam(SIGNATURE) ParamsDigest signature)
  441. throws IOException, BinanceException;
  442. /**
  443. * Returns a listen key for websocket login.
  444. *
  445. * @param apiKey the api key
  446. * @return
  447. * @throws BinanceException
  448. * @throws IOException
  449. */
  450. @POST
  451. @Path("/api/v3/userDataStream")
  452. BinanceListenKey startUserDataStream(@HeaderParam(X_MBX_APIKEY) String apiKey)
  453. throws IOException, BinanceException;
  454. /**
  455. * Keeps the authenticated websocket session alive.
  456. *
  457. * @param apiKey the api key
  458. * @param listenKey the api secret
  459. * @return
  460. * @throws BinanceException
  461. * @throws IOException
  462. */
  463. @PUT
  464. @Path("/api/v3/userDataStream?listenKey={listenKey}")
  465. Map<?, ?> keepAliveUserDataStream(
  466. @HeaderParam(X_MBX_APIKEY) String apiKey, @PathParam("listenKey") String listenKey)
  467. throws IOException, BinanceException;
  468. /**
  469. * Closes the websocket authenticated connection.
  470. *
  471. * @param apiKey the api key
  472. * @param listenKey the api secret
  473. * @return
  474. * @throws BinanceException
  475. * @throws IOException
  476. */
  477. @DELETE
  478. @Path("/api/v3/userDataStream?listenKey={listenKey}")
  479. Map<?, ?> closeUserDataStream(
  480. @HeaderParam(X_MBX_APIKEY) String apiKey, @PathParam("listenKey") String listenKey)
  481. throws IOException, BinanceException;
  482. }