-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkrakenfutures_ws_asyncapi.yaml
2344 lines (2344 loc) · 73.1 KB
/
krakenfutures_ws_asyncapi.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
asyncapi: 3.0.0
info:
title: Kraken Futures Websocket API
version: 2.0.0
tags:
- name: User Data
- name: Market Data
- name: Admin
servers:
production:
host: futures.kraken.com
pathname: /ws/v1
protocol: wss
channels:
open_orders:
address: open_orders
messages:
openOrdersUpdates.message.0:
$ref: "#/components/messages/OpenOrdersSnapshotMessage"
openOrdersUpdates.message.1:
$ref: "#/components/messages/OpenOrdersUpdateMessage"
openOrdersUpdates.message.2:
$ref: "#/components/messages/OpenOrderDeltaMessage"
openOrdersUpdates.message.3:
$ref: "#/components/messages/OpenOrderCancelMessage"
openOrdersUpdates.message.4:
$ref: "#/components/messages/ErrorMessage"
subscribeToOpenOrders.message:
contentType: application/json
summary: Request to subscribe to open orders feed
payload:
$ref: "#/components/schemas/OpenOrdersRequest"
description: |
This subscription feed publishes information about user open orders.
open_orders_verbose:
address: open_orders_verbose
messages:
openOrdersVerbose.message.0:
$ref: "#/components/messages/OpenOrdersSnapshotMessage"
openOrdersVerbose.message.1:
$ref: "#/components/messages/OpenOrdersUpdateMessage"
openOrdersVerbose.message.2:
$ref: "#/components/messages/OpenOrderDeltaMessage"
openOrdersVerbose.message.3:
$ref: "#/components/messages/OpenOrderCancelMessage"
openOrdersVerbose.message.4:
$ref: "#/components/messages/ErrorMessage"
subscribeToOpenOrdersVerbose.message:
contentType: application/json
summary: Request to subscribe to open orders feed
payload:
$ref: "#/components/schemas/OpenOrdersRequest"
description: >
This subscription feed publishes information about user open orders. This
feed adds extra information about all the post-only orders that failed to
cross the book.
fills:
address: fills
messages:
PublishToFills.message.0:
$ref: "#/components/messages/FillsMessage"
PublishToFills.message.1:
$ref: "#/components/messages/FillsSnapshotMessage"
PublishToFills.message.2:
$ref: "#/components/messages/FillsDeltaMessage"
PublishToFills.message.3:
$ref: "#/components/messages/OpenOrderCancelMessage"
PublishToFills.message.4:
$ref: "#/components/messages/ErrorMessage"
subscribeToFills.message:
contentType: application/json
summary: Request to subscribe to open orders feed
payload:
$ref: "#/components/schemas/OpenOrdersRequest"
description: |
This subscription feed publishes fills information.
balances:
address: balances
messages:
PublishToBalance.message.0:
$ref: "#/components/messages/BalanceMessage"
PublishToBalance.message.1:
$ref: "#/components/messages/BalanceSnapshotMessage"
PublishToBalance.message.2:
$ref: "#/components/messages/BalanceDeltaMessage"
PublishToBalance.message.3:
$ref: "#/components/messages/ErrorMessage"
subscribeToBalance.message:
contentType: application/json
summary: Request to subscribe to Balance
payload:
$ref: "#/components/schemas/OpenOrdersRequest"
description: >
This feed returns balance information for holding wallets, single
collateral wallets and multi-collateral wallets.
open_positions:
address: open_positions
messages:
PublishToPosition.message.0:
$ref: "#/components/messages/openPositionsMessage"
PublishToPosition.message.1:
$ref: "#/components/messages/PositionSnapshotMessage"
PublishToPosition.message.2:
$ref: "#/components/messages/ErrorMessage"
subscribeToPositions.message:
contentType: application/json
summary: Request to subscribe to open positions
payload:
$ref: "#/components/schemas/OpenOrdersRequest"
description: |
This subscription feed publishes the open positions of the user account.
account_log:
address: account_log
messages:
PublishToLogs.message.0:
$ref: "#/components/messages/LogsMessage"
PublishToLogs.message.1:
$ref: "#/components/messages/LogsSnapshotMessage"
PublishToLogs.message.2:
$ref: "#/components/messages/LogsDeltaMessage"
PublishToLogs.message.3:
$ref: "#/components/messages/ErrorMessage"
subscribeToLogs.message:
contentType: application/json
summary: Request to subscribe to account logs
payload:
$ref: "#/components/schemas/OpenOrdersRequest"
description: |
This subscription feed publishes account log.
notifications_auth:
address: notifications_auth
messages:
PublishToNotifications.message.0:
$ref: "#/components/messages/LogsMessage"
PublishToNotifications.message.1:
$ref: "#/components/messages/NotificationsSnapshotMessage"
PublishToNotifications.message.2:
$ref: "#/components/messages/ErrorMessage"
subscribeToNotifications.message:
contentType: application/json
summary: Request to subscribe to account logs
payload:
$ref: "#/components/schemas/OpenOrdersRequest"
description: >
This subscription feed publishes notifications to the
client.Authentication is required.
ticker:
address: ticker
messages:
PublishToTicker.message.0:
$ref: "#/components/messages/TickerMessage"
PublishToTicker.message.1:
$ref: "#/components/messages/TickerSnapshotMessage"
PublishToTicker.message.2:
$ref: "#/components/messages/ErrorMessage"
subscribeToTicker.message:
contentType: application/json
summary: Request to subscribe to Ticker
payload:
$ref: "#/components/schemas/TickerRequest"
description: >
The ticker feed returns ticker information about listed products. Only
tradeable markets are available via individual WebSocket market data
feeds. Delta messages are throttled such that they are published every 1s.
ticker_lite:
address: ticker_lite
messages:
PublishToTickerLite.message.0:
$ref: "#/components/messages/TickerMessage"
PublishToTickerLite.message.1:
$ref: "#/components/messages/TickerLiteSnapshotMessage"
PublishToTickerLite.message.2:
$ref: "#/components/messages/ErrorMessage"
subscribeToTickerLite.message:
contentType: application/json
summary: Request to subscribe to Ticker
payload:
$ref: "#/components/schemas/TickerRequest"
description: >
The ticker lite feed returns ticker information about listed products.
Delta messages are throttled such that they are published every 1s.
book:
address: book
messages:
PublishToOrderBook.message.0:
$ref: "#/components/messages/TickerMessage"
PublishToOrderBook.message.1:
$ref: "#/components/messages/BookSnapshotMessage"
PublishToOrderBook.message.2:
$ref: "#/components/messages/BookDeltaMessage"
PublishToOrderBook.message.3:
$ref: "#/components/messages/ErrorMessage"
subscribeToOrderBook.message:
contentType: application/json
summary: Request to subscribe to order book
payload:
$ref: "#/components/schemas/TickerRequest"
description: |
The book feed returns information about the order book.
trade:
address: trade
messages:
PublishToTrade.message.0:
$ref: "#/components/messages/TickerMessage"
PublishToTrade.message.1:
$ref: "#/components/messages/TradeSnapshotMessage"
PublishToTrade.message.2:
$ref: "#/components/messages/TradeDeltaMessage"
PublishToTrade.message.3:
$ref: "#/components/messages/ErrorMessage"
subscribeToTrade.message:
contentType: application/json
summary: Request to subscribe to trade
payload:
$ref: "#/components/schemas/TickerRequest"
description: |
The trade feed returns information about executed trades
challenge:
address: challenge
messages:
PublishToChallenge.message.0:
$ref: "#/components/messages/ChallengeMessage"
PublishToChallenge.message.1:
$ref: "#/components/messages/ErrorMessage"
subscribeToChallenge.message:
contentType: application/json
summary: Request to subscribe to challenge
payload:
$ref: "#/components/schemas/ChallengeRequest"
description: >
This request returns a challenge to be used in handshake for user
authentication.
heartbeat:
address: heartbeat
messages:
PublishToHeartbeat.message.0:
$ref: "#/components/messages/HeartbeatMessage"
PublishToHeartbeat.message.1:
$ref: "#/components/messages/HeartbeatSnapshotMessage"
PublishToHeartbeat.message.2:
$ref: "#/components/messages/ErrorMessage"
subscribeToHeartbeat.message:
contentType: application/json
summary: Request to subscribe to heartbeat
payload:
$ref: "#/components/schemas/HeartbeatRequest"
description: |
The heartbeat feed publishes a heartbeat message at timed intervals.
operations:
openOrdersUpdates:
action: receive
channel:
$ref: "#/channels/open_orders"
summary: Server publishes open orders updates
messages:
- $ref: "#/channels/open_orders/messages/openOrdersUpdates.message.0"
- $ref: "#/channels/open_orders/messages/openOrdersUpdates.message.1"
- $ref: "#/channels/open_orders/messages/openOrdersUpdates.message.2"
- $ref: "#/channels/open_orders/messages/openOrdersUpdates.message.3"
- $ref: "#/channels/open_orders/messages/openOrdersUpdates.message.4"
subscribeToOpenOrders:
action: send
channel:
$ref: "#/channels/open_orders"
summary: Subscribe to open orders
messages:
- $ref: "#/channels/open_orders/messages/subscribeToOpenOrders.message"
openOrdersVerbose:
action: receive
channel:
$ref: "#/channels/open_orders_verbose"
summary: Server publishes open orders updates
messages:
- $ref: "#/channels/open_orders_verbose/messages/openOrdersVerbose.message.0"
- $ref: "#/channels/open_orders_verbose/messages/openOrdersVerbose.message.1"
- $ref: "#/channels/open_orders_verbose/messages/openOrdersVerbose.message.2"
- $ref: "#/channels/open_orders_verbose/messages/openOrdersVerbose.message.3"
- $ref: "#/channels/open_orders_verbose/messages/openOrdersVerbose.message.4"
subscribeToOpenOrdersVerbose:
action: send
channel:
$ref: "#/channels/open_orders_verbose"
summary: Subscribe to open orders verbose
messages:
- $ref: >-
#/channels/open_orders_verbose/messages/subscribeToOpenOrdersVerbose.message
PublishToFills:
action: receive
channel:
$ref: "#/channels/fills"
summary: Server publishes fills
messages:
- $ref: "#/channels/fills/messages/PublishToFills.message.0"
- $ref: "#/channels/fills/messages/PublishToFills.message.1"
- $ref: "#/channels/fills/messages/PublishToFills.message.2"
- $ref: "#/channels/fills/messages/PublishToFills.message.3"
- $ref: "#/channels/fills/messages/PublishToFills.message.4"
subscribeToFills:
action: send
channel:
$ref: "#/channels/fills"
summary: Subscribe to fills
messages:
- $ref: "#/channels/fills/messages/subscribeToFills.message"
PublishToBalance:
action: receive
channel:
$ref: "#/channels/balances"
summary: Server publishes fills
messages:
- $ref: "#/channels/balances/messages/PublishToBalance.message.0"
- $ref: "#/channels/balances/messages/PublishToBalance.message.1"
- $ref: "#/channels/balances/messages/PublishToBalance.message.2"
- $ref: "#/channels/balances/messages/PublishToBalance.message.3"
subscribeToBalance:
action: send
channel:
$ref: "#/channels/balances"
summary: Subscribe to balance
messages:
- $ref: "#/channels/balances/messages/subscribeToBalance.message"
PublishToPosition:
action: receive
channel:
$ref: "#/channels/open_positions"
summary: Server publishes open positions
messages:
- $ref: "#/channels/open_positions/messages/PublishToPosition.message.0"
- $ref: "#/channels/open_positions/messages/PublishToPosition.message.1"
- $ref: "#/channels/open_positions/messages/PublishToPosition.message.2"
subscribeToPositions:
action: send
channel:
$ref: "#/channels/open_positions"
summary: Subscribe to open positions
messages:
- $ref: "#/channels/open_positions/messages/subscribeToPositions.message"
PublishToLogs:
action: receive
channel:
$ref: "#/channels/account_log"
summary: Server publishes open positions
messages:
- $ref: "#/channels/account_log/messages/PublishToLogs.message.0"
- $ref: "#/channels/account_log/messages/PublishToLogs.message.1"
- $ref: "#/channels/account_log/messages/PublishToLogs.message.2"
- $ref: "#/channels/account_log/messages/PublishToLogs.message.3"
subscribeToLogs:
action: send
channel:
$ref: "#/channels/account_log"
summary: Subscribe to account logs
messages:
- $ref: "#/channels/account_log/messages/subscribeToLogs.message"
PublishToNotifications:
action: receive
channel:
$ref: "#/channels/notifications_auth"
summary: Server publishes notifications
messages:
- $ref: >-
#/channels/notifications_auth/messages/PublishToNotifications.message.0
- $ref: >-
#/channels/notifications_auth/messages/PublishToNotifications.message.1
- $ref: >-
#/channels/notifications_auth/messages/PublishToNotifications.message.2
subscribeToNotifications:
action: send
channel:
$ref: "#/channels/notifications_auth"
summary: Subscribe to notifications
messages:
- $ref: >-
#/channels/notifications_auth/messages/subscribeToNotifications.message
PublishToTicker:
action: receive
channel:
$ref: "#/channels/ticker"
summary: Server publishes ticker
messages:
- $ref: "#/channels/ticker/messages/PublishToTicker.message.0"
- $ref: "#/channels/ticker/messages/PublishToTicker.message.1"
- $ref: "#/channels/ticker/messages/PublishToTicker.message.2"
subscribeToTicker:
action: send
channel:
$ref: "#/channels/ticker"
summary: Subscribe to notifications
messages:
- $ref: "#/channels/ticker/messages/subscribeToTicker.message"
PublishToTickerLite:
action: receive
channel:
$ref: "#/channels/ticker_lite"
summary: Server publishes ticker
messages:
- $ref: "#/channels/ticker_lite/messages/PublishToTickerLite.message.0"
- $ref: "#/channels/ticker_lite/messages/PublishToTickerLite.message.1"
- $ref: "#/channels/ticker_lite/messages/PublishToTickerLite.message.2"
subscribeToTickerLite:
action: send
channel:
$ref: "#/channels/ticker_lite"
summary: Subscribe to ticker lite
messages:
- $ref: "#/channels/ticker_lite/messages/subscribeToTickerLite.message"
PublishToOrderBook:
action: receive
channel:
$ref: "#/channels/book"
summary: Server publishes order book
messages:
- $ref: "#/channels/book/messages/PublishToOrderBook.message.0"
- $ref: "#/channels/book/messages/PublishToOrderBook.message.1"
- $ref: "#/channels/book/messages/PublishToOrderBook.message.2"
- $ref: "#/channels/book/messages/PublishToOrderBook.message.3"
subscribeToOrderBook:
action: send
channel:
$ref: "#/channels/book"
summary: Subscribe to order book
messages:
- $ref: "#/channels/book/messages/subscribeToOrderBook.message"
PublishToTrade:
action: receive
channel:
$ref: "#/channels/trade"
summary: Server publishes trade
messages:
- $ref: "#/channels/trade/messages/PublishToTrade.message.0"
- $ref: "#/channels/trade/messages/PublishToTrade.message.1"
- $ref: "#/channels/trade/messages/PublishToTrade.message.2"
- $ref: "#/channels/trade/messages/PublishToTrade.message.3"
subscribeToTrade:
action: send
channel:
$ref: "#/channels/trade"
summary: Subscribe to trade
messages:
- $ref: "#/channels/trade/messages/subscribeToTrade.message"
PublishToChallenge:
action: receive
channel:
$ref: "#/channels/challenge"
summary: Server publishes Challenge
messages:
- $ref: "#/channels/challenge/messages/PublishToChallenge.message.0"
- $ref: "#/channels/challenge/messages/PublishToChallenge.message.1"
subscribeToChallenge:
action: send
channel:
$ref: "#/channels/challenge"
summary: Subscribe to challenge
messages:
- $ref: "#/channels/challenge/messages/subscribeToChallenge.message"
PublishToHeartbeat:
action: receive
channel:
$ref: "#/channels/heartbeat"
summary: Server publishes heartbeat
messages:
- $ref: "#/channels/heartbeat/messages/PublishToHeartbeat.message.0"
- $ref: "#/channels/heartbeat/messages/PublishToHeartbeat.message.1"
- $ref: "#/channels/heartbeat/messages/PublishToHeartbeat.message.2"
subscribeToHeartbeat:
action: send
channel:
$ref: "#/channels/heartbeat"
summary: Subscribe to heartbeat
messages:
- $ref: "#/channels/heartbeat/messages/subscribeToHeartbeat.message"
components:
messages:
OpenOrdersSnapshotMessage:
contentType: application/json
summary: Snapshot of open orders when subscribed
payload:
$ref: "#/components/schemas/OpenOrdersSnapshot"
OpenOrdersUpdateMessage:
contentType: application/json
summary: Real-time updates on open orders
payload:
$ref: "#/components/schemas/OpenOrdersResponse"
OpenOrderDeltaMessage:
contentType: application/json
summary: Real-time updates on open orders
payload:
$ref: "#/components/schemas/OpenOrdersDeltaResponse"
OpenOrderCancelMessage:
contentType: application/json
summary: Real-time updates on open orders
payload:
$ref: "#/components/schemas/OpenOrdersCancelResponse"
ErrorMessage:
contentType: application/json
summary: error
payload:
$ref: "#/components/schemas/ErrorResponse"
FillsMessage:
contentType: application/json
summary: error
payload:
$ref: "#/components/schemas/FillsResponse"
FillsSnapshotMessage:
contentType: application/json
summary: Real-time updates on open orders
payload:
$ref: "#/components/schemas/FillsSnapshotResponse"
FillsDeltaMessage:
contentType: application/json
summary: Real-time updates on open orders
payload:
$ref: "#/components/schemas/FillsSnapshotResponse"
BalanceMessage:
contentType: application/json
summary: Real-time updates on open orders
payload:
$ref: "#/components/schemas/OpenOrdersResponse"
BalanceSnapshotMessage:
contentType: application/json
summary: Real-time updates on open orders
payload:
$ref: "#/components/schemas/FillsSnapshotResponse"
BalanceDeltaMessage:
contentType: application/json
summary: Real-time updates on open orders
payload:
oneOf:
- $ref: "#/components/schemas/HoldingWalletResponse"
- $ref: "#/components/schemas/MultiCollateralResponse"
- $ref: "#/components/schemas/SingleCollateralResponse"
openPositionsMessage:
contentType: application/json
summary: Real-time updates on open orders
payload:
$ref: "#/components/schemas/OpenOrdersResponse"
PositionSnapshotMessage:
contentType: application/json
summary: Real-time updates on open positions
payload:
$ref: "#/components/schemas/PositionsSnapshotResponse"
LogsMessage:
contentType: application/json
summary: Real-time updates on account logs
payload:
$ref: "#/components/schemas/OpenOrdersResponse"
LogsSnapshotMessage:
contentType: application/json
summary: Real-time updates on account logs
payload:
$ref: "#/components/schemas/LogsSnapshotResponse"
LogsDeltaMessage:
contentType: application/json
summary: Real-time updates on open orders
payload:
$ref: "#/components/schemas/LogsDeltaResponse"
NotificationsSnapshotMessage:
contentType: application/json
summary: Real-time updates on account logs
payload:
$ref: "#/components/schemas/NotificationsSnapshotResponse"
TickerSnapshotMessage:
contentType: application/json
summary: Real-time updates on account logs
payload:
$ref: "#/components/schemas/TickerSnapshotResponse"
TickerMessage:
contentType: application/json
summary: Real-time updates on account logs
payload:
$ref: "#/components/schemas/TickerResponse"
TickerLiteSnapshotMessage:
contentType: application/json
summary: Real-time updates on account logs
payload:
$ref: "#/components/schemas/TickerLiteSnapshotResponse"
BookSnapshotMessage:
contentType: application/json
summary: Real-time updates on order book
payload:
$ref: "#/components/schemas/BookSnapshotResponse"
BookDeltaMessage:
contentType: application/json
summary: Real-time updates on order book
payload:
$ref: "#/components/schemas/BookDeltaResponse"
TradeSnapshotMessage:
contentType: application/json
summary: Real-time updates on order book
payload:
$ref: "#/components/schemas/TradeSnapshotResponse"
TradeDeltaMessage:
contentType: application/json
summary: Real-time updates on order book
payload:
$ref: "#/components/schemas/TradeDeltaResponse"
ChallengeMessage:
contentType: application/json
summary: Real-time updates on challenge
payload:
$ref: "#/components/schemas/ChallengeResponse"
HeartbeatMessage:
contentType: application/json
summary: Real-time updates on heartbeat
payload:
$ref: "#/components/schemas/HeartbeatRequest"
HeartbeatSnapshotMessage:
contentType: application/json
summary: Real-time updates on heartbeat
payload:
$ref: "#/components/schemas/HeartbeaSnapshotRequest"
schemas:
OpenOrdersRequest:
type: object
required:
- event
- feed
- api_key
- original_challenge
- signed_challenge
properties:
event:
$ref: "#/components/schemas/eventEnum"
description: The event type (subscribe or unsubscribe)
feed:
$ref: "#/components/schemas/feedEnum"
description: The requested subscription feed
api_key:
type: string
description: The user’s API key
original_challenge:
type: string
description: The message that is received from a challenge request
signed_challenge:
type: string
description: The signed challenge message with user’s API secret
eventEnum:
type: string
enum:
- subscribe
- unsubscribe
- subscribed_failed
- unsubscribed_failed
feedEnum:
type: string
enum:
- open_orders
- open_orders_verbose
- fills
- balances
OpenOrdersResponse:
type: object
properties:
event:
$ref: "#/components/schemas/eventEnum"
description: The result of the subscription request
feed:
$ref: "#/components/schemas/feedEnum"
description: The subscription feed
api_key:
type: string
description: The user’s API key
original_challenge:
type: string
description: The message that is received from a challenge request
signed_challenge:
type: string
description: The signed challenge message with user’s API secret
OpenOrdersSnapshot:
type: object
required:
- feed
- account
- orders
properties:
feed:
$ref: "#/components/schemas/feedEnum"
account:
type: string
description: Account ID
orders:
type: array
items:
$ref: "#/components/schemas/Order"
Order:
type: object
required:
- instrument
- time
- last_update_time
- qty
- filled
- type
- order_id
- direction
- reduce_only
properties:
instrument:
type: string
time:
type: integer
format: int64
last_update_time:
type: integer
format: int64
qty:
type: number
format: float
filled:
type: number
format: float
limit_price:
type: number
format: float
stop_price:
type: number
format: float
type:
$ref: "#/components/schemas/typeEnum"
order_id:
type: string
direction:
$ref: "#/components/schemas/directionEnum"
reduce_only:
type: boolean
triggerSignal:
$ref: "#/components/schemas/signalEnum"
trailing_stop_options:
$ref: "#/components/schemas/TrailingStopOptions"
typeEnum:
type: string
enum:
- stop
- trailing_stop
- limit
directionEnum:
type: integer
enum:
- 1
- -1
signalEnum:
type: string
enum:
- last
- mark
TrailingStopOptions:
type: object
required:
- max_deviation
- unit
properties:
max_deviation:
type: number
format: float
unit:
$ref: "#/components/schemas/unitEnum"
unitEnum:
type: string
enum:
- percent
OpenOrdersDeltaResponse:
type: object
required:
- feed
- order
- is_cancel
- reason
properties:
feed:
$ref: "#/components/schemas/feedEnum"
order:
$ref: "#/components/schemas/Order"
is_cancel:
type: boolean
reason:
$ref: "#/components/schemas/reasonEnum"
reasonEnum:
type: string
enum:
- new_placed_order_by_user
- canceled_by_user
- other_reasons
OpenOrdersCancelResponse:
type: object
required:
- feed
- order_id
- is_cancel
- reason
properties:
feed:
$ref: "#/components/schemas/feedEnum"
order_id:
type: string
description: Unique ID of the order
is_cancel:
type: boolean
reason:
$ref: "#/components/schemas/reasonEnum"
ErrorResponse:
type: object
required:
- event
- message
properties:
event:
$ref: "#/components/schemas/eventEnum"
message:
type: string
description: Error message detail
FillsResponse:
type: object
required:
- event
- feed
- product_ids
- api_key
- original_challenge
- signed_challenge
properties:
event:
$ref: "#/components/schemas/eventEnum"
description: The result of the subscription event
feed:
type: string
description: "The requested subscription feed (e.g., fills)"
product_ids:
type: array
items:
type: string
description: List of product identifiers to subscribe for
api_key:
type: string
description: The user's API key
original_challenge:
type: string
description: The message that is received from a challenge request
signed_challenge:
type: string
description: The signed challenge message with the user's API secret
FillsSnapshotResponse:
type: object
required:
- feed
- account
- fills
properties:
feed:
type: string
description: "The subscribed feed (e.g., fills)"
account:
type: string
description: The user account
fills:
type: array
items:
$ref: "#/components/schemas/Fill"
Fill:
type: object
required:
- instrument
- time
- price
- seq
- buy
- qty
- remaining_order_qty
- order_id
- fill_id
- fill_type
properties:
instrument:
type: string
description: The fill instrument (also referred to as symbol or product_id)
time:
type: integer
format: int64
description: The server UTC date and time in milliseconds
price:
type: number
format: float
description: The price at which the order was filled
seq:
type: integer
format: int64
description: The subscription message sequence number
buy:
type: boolean
description: A flag that indicates if the filled order was a buy
qty:
type: number
format: float
description: The quantity that was filled
remaining_order_qty:
type: number
format: float
description: The remaining unfilled quantity in the order
order_id:
type: string
format: uuid
description: The order ID that was filled
cli_ord_id:
type: string
format: uuid
description: >-
The unique client order identifier (returned only if the order has a
client order ID)
fill_id:
type: string
format: uuid
description: The fill ID
fill_type:
$ref: "#/components/schemas/fillEnum"
fee_paid:
type: number
format: float
description: Fee paid on fill
fee_currency:
type: string
description: Currency in which the fee was charged
taker_order_type:
type: string
description: The order type
order_type:
type: string
description: The absolute funding rate
fillEnum:
type: string
description: "The classification of the fill (e.g., maker, taker, liquidation, etc.)"
enum:
- maker
- taker
- liquidation
- assignee
- assignor
- unwindBankrupt
- unwindCounterparty
- takerAfterEdit
BalanceResponse:
type: object
required:
- event
- feed
- api_key
- original_challenge
- signed_challenge
properties:
event:
$ref: "#/components/schemas/eventEnum"
description: The result of the subscription event
feed:
$ref: "#/components/schemas/feedEnum"
description: The requested subscription feed
api_key:
type: string
description: The user's API key
original_challenge:
type: string
description: The message that is received from a challenge request
signed_challenge:
type: string
description: The signed challenge message with the user's API secret
BalanceSnapshotResponse:
type: object
required:
- feed
- account
- timestamp
- seq
- holding
- name
- pair
- unit
- portfolio_value
- balance
- maintenance_margin
- initial_margin
- available
- unrealized_funding
- pnl
- futures
- flex_futures
- currencies
- isolated
- cross
properties:
feed:
type: string
description: "The subscribed feed (e.g., balances)"
account:
type: string
description: The user account
timestamp:
type: integer
format: int64
description: The unix timestamp of the balance state in milliseconds
seq:
type: integer
format: int64
description: The subscription message sequence number