-
Notifications
You must be signed in to change notification settings - Fork 87
/
3commas_swaggerdoc.json
8374 lines (8374 loc) · 223 KB
/
3commas_swaggerdoc.json
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
{
"info": {
"title": "3Commas Public API",
"version": "0.0.1"
},
"swagger": "2.0",
"produces": [
"application/json"
],
"host": "api.3commas.io",
"basePath": "/public/api",
"tags": [
{
"name": "bots",
"description": "Operations about bots"
},
{
"name": "deals",
"description": "Operations about deals"
},
{
"name": "accounts",
"description": "Operations about accounts"
},
{
"name": "users",
"description": "Operations about users"
},
{
"name": "marketplace",
"description": "Operations about marketplaces"
},
{
"name": "grid_bots",
"description": "Operations about grid_bots"
},
{
"name": "loose_accounts",
"description": "Operations about loose_accounts"
},
{
"name": "mini_apps",
"description": "Operations about mini_apps"
},
{
"name": "portfolios",
"description": "Operations about portfolios"
},
{
"name": "ping",
"description": "Operations about pings"
},
{
"name": "time",
"description": "Operations about times"
},
{
"name": "general_validate",
"description": "Operations about general_validates"
},
{
"name": "smart_trades_v2",
"description": "Operations about smart_trades_v2s"
},
{
"name": "accounts",
"description": "Operations about accounts"
}
],
"paths": {
"/ver1/bots/account_trade_info_smart_sell": {
"get": {
"description": "Smart Sell Account Table Info (Permission: NONE, Security: SIGNED)",
"produces": [
"application/json"
],
"parameters": [
{
"in": "query",
"name": "account_id",
"type": "integer",
"format": "int32",
"required": true
}
],
"responses": {
"200": {
"description": "Smart Sell Account Table Info (Permission: NONE, Security: SIGNED)"
}
},
"tags": [
"bots"
],
"operationId": "getVer1BotsAccountTradeInfoSmartSell"
}
},
"/ver1/bots/account_trade_info": {
"get": {
"description": "Account Trade Info (Permission: NONE, Security: SIGNED)",
"produces": [
"application/json"
],
"parameters": [
{
"in": "query",
"name": "account_id",
"type": "integer",
"format": "int32",
"required": true
}
],
"responses": {
"200": {
"description": "Account Trade Info (Permission: NONE, Security: SIGNED)"
}
},
"tags": [
"bots"
],
"operationId": "getVer1BotsAccountTradeInfo"
}
},
"/ver1/bots/strategy_list": {
"get": {
"description": "Available strategy list for bot (Permission: BOTS_READ, Security: SIGNED)",
"produces": [
"application/json"
],
"parameters": [
{
"in": "query",
"name": "account_id",
"description": "id from GET /ver1/accounts",
"type": "integer",
"format": "int32",
"required": false
},
{
"in": "query",
"name": "type",
"type": "string",
"enum": [
"simple",
"composite"
],
"required": false
},
{
"in": "query",
"name": "strategy",
"type": "string",
"enum": [
"long",
"short"
],
"required": false
}
],
"responses": {
"200": {
"description": "Available strategy list for bot (Permission: BOTS_READ, Security: SIGNED)"
}
},
"tags": [
"bots"
],
"operationId": "getVer1BotsStrategyList"
}
},
"/ver1/bots/pairs_black_list": {
"get": {
"description": "Black List for bot pairs (Permission: BOTS_READ, Security: SIGNED)",
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "Black List for bot pairs (Permission: BOTS_READ, Security: SIGNED)"
}
},
"tags": [
"bots"
],
"operationId": "getVer1BotsPairsBlackList"
}
},
"/ver1/bots/update_pairs_black_list": {
"post": {
"description": "Create or Update pairs BlackList for bots (Permission: BOTS_WRITE, Security: SIGNED)",
"produces": [
"application/json"
],
"consumes": [
"application/json"
],
"parameters": [
{
"in": "formData",
"name": "pairs",
"type": "string",
"required": true
}
],
"responses": {
"201": {
"description": "Create or Update pairs BlackList for bots (Permission: BOTS_WRITE, Security: SIGNED)"
}
},
"tags": [
"bots"
],
"operationId": "postVer1BotsUpdatePairsBlackList"
}
},
"/ver1/bots/create_bot": {
"post": {
"description": "Create bot (Permission: BOTS_WRITE, Security: SIGNED)",
"produces": [
"application/json"
],
"consumes": [
"application/json"
],
"parameters": [
{
"in": "formData",
"name": "name",
"type": "string",
"required": true
},
{
"in": "formData",
"name": "account_id",
"description": "id from GET /ver1/accounts",
"type": "integer",
"format": "int32",
"required": true
},
{
"in": "formData",
"name": "pairs",
"description": "Pass single pair to create SingleBot or any other number of pairs to create MultiBot",
"type": "string",
"required": true
},
{
"in": "formData",
"name": "max_active_deals",
"type": "integer",
"format": "int32",
"default": 1,
"required": false
},
{
"in": "formData",
"name": "base_order_volume",
"description": "Base order size",
"type": "number",
"format": "double",
"required": true
},
{
"in": "formData",
"name": "base_order_volume_type",
"description": "base order volume currency",
"type": "string",
"enum": [
"quote_currency",
"base_currency",
"percent",
"xbt"
],
"required": false
},
{
"in": "formData",
"name": "take_profit",
"description": "Target profit(percentage)",
"type": "number",
"format": "double",
"required": true
},
{
"in": "formData",
"name": "take_profit_steps",
"description": "Take profit steps <br>[{\"amount_percentage\": 10, \"profit_percentage\": 10}, <br>{\"amount_percentage\": 20, \"profit_percentage\": 15}, <br>{\"amount_percentage\": 30, \"profit_percentage\": 20}, <br>{\"amount_percentage\": 40, \"profit_percentage\": 23}]",
"type": "array",
"items": {
"type": "json"
},
"required": false
},
{
"in": "formData",
"name": "safety_order_volume",
"description": "Safety trade size",
"type": "number",
"format": "double",
"required": true
},
{
"in": "formData",
"name": "safety_order_volume_type",
"description": "safety order volume currency",
"type": "string",
"enum": [
"quote_currency",
"base_currency",
"percent",
"xbt"
],
"required": false
},
{
"in": "formData",
"name": "martingale_volume_coefficient",
"type": "number",
"format": "double",
"default": 1,
"required": true
},
{
"in": "formData",
"name": "martingale_step_coefficient",
"type": "number",
"format": "double",
"default": 1,
"required": true
},
{
"in": "formData",
"name": "max_safety_orders",
"description": "Max safety trades count",
"type": "integer",
"format": "int32",
"required": true
},
{
"in": "formData",
"name": "active_safety_orders_count",
"description": "Max active safety trades count",
"type": "integer",
"format": "int32",
"required": true
},
{
"in": "formData",
"name": "stop_loss_percentage",
"type": "number",
"format": "double",
"required": false
},
{
"in": "formData",
"name": "sl_to_breakeven_enabled",
"description": "Enable/Disable Stop Loss to break even function",
"type": "boolean",
"required": false
},
{
"in": "formData",
"name": "sl_to_breakeven_data",
"description": "Upper limit for Stop Loss to break evenThe upper limit to which the stop loss will move(0 - bouthg average price, 1 - TP1, 2 - TP2)Example:{upper_breakeven_limit: 1}",
"type": "json",
"required": false
},
{
"in": "formData",
"name": "cooldown",
"type": "number",
"format": "double",
"required": false
},
{
"in": "formData",
"name": "trailing_enabled",
"description": "Enable trailing take profit. Binance only.",
"type": "boolean",
"required": false
},
{
"in": "formData",
"name": "trailing_deviation",
"description": "required if trailing_enabled",
"type": "number",
"format": "double",
"required": false
},
{
"in": "formData",
"name": "btc_price_limit",
"type": "number",
"format": "double",
"required": false
},
{
"in": "formData",
"name": "strategy",
"type": "string",
"default": "long",
"enum": [
"short",
"long"
],
"required": false
},
{
"in": "formData",
"name": "safety_order_step_percentage",
"description": "Price deviation to open safety trades(percentage)",
"type": "number",
"format": "double",
"required": true
},
{
"in": "formData",
"name": "take_profit_type",
"description": "Percentage: base – from base order, total – from total volume",
"type": "string",
"default": "base",
"enum": [
"base",
"total"
],
"required": true
},
{
"in": "formData",
"name": "strategy_list",
"description": "For manual signals: [{\"strategy\":\"manual\"}] or []<br>For non-stop(1 pair only): [{\"strategy\":\"nonstop\", \"options\": {}]<br>QFL: [{\"options\": {\"type\": \"original\"}, {\"percent\": 3}, \"strategy\": \"qfl\"}] <br>TradingView: [{\"options\": {\"time\": \"5m\", \"type\": \"buy_or_strong_buy\"}, \"strategy\": \"trading_view\"}] <br>RSI: [{\"options\": {\"time\": \"5m\", \"points\": 30, \"trigger_condition\": \"less\", \"time_period\": 7}, \"strategy\": \"rsi\"}]",
"type": "array",
"items": {
"type": "json"
},
"required": true
},
{
"in": "formData",
"name": "leverage_type",
"description": "Used for Bitmex bots only",
"type": "string",
"default": "not_specified",
"enum": [
"custom",
"cross",
"not_specified",
"isolated"
],
"required": false
},
{
"in": "formData",
"name": "leverage_custom_value",
"description": "required if leverage_type is isolated",
"type": "number",
"format": "double",
"required": false
},
{
"in": "formData",
"name": "min_price",
"description": "minimum price to open deal",
"type": "number",
"format": "double",
"required": false
},
{
"in": "formData",
"name": "max_price",
"description": "maximum price to open deal",
"type": "number",
"format": "double",
"required": false
},
{
"in": "formData",
"name": "stop_loss_timeout_enabled",
"type": "boolean",
"required": false
},
{
"in": "formData",
"name": "stop_loss_timeout_in_seconds",
"description": "StopLoss timeout in seconds if StopLoss timeout enabled",
"type": "integer",
"format": "int32",
"required": false
},
{
"in": "formData",
"name": "min_volume_btc_24h",
"type": "number",
"format": "double",
"required": false
},
{
"in": "formData",
"name": "tsl_enabled",
"description": "Enable trailing stop loss. Bitmex only.",
"type": "boolean",
"required": false
},
{
"in": "formData",
"name": "deal_start_delay_seconds",
"description": "Deal start delay in seconds",
"type": "integer",
"format": "int32",
"required": false
},
{
"in": "formData",
"name": "profit_currency",
"description": "Take profit currency",
"type": "string",
"enum": [
"quote_currency",
"base_currency"
],
"required": false
},
{
"in": "formData",
"name": "start_order_type",
"type": "string",
"enum": [
"limit",
"market"
],
"required": false
},
{
"in": "formData",
"name": "stop_loss_type",
"type": "string",
"enum": [
"stop_loss",
"stop_loss_and_disable_bot"
],
"required": false
},
{
"in": "formData",
"name": "disable_after_deals_count",
"description": "Bot will be disabled after opening this number of deals",
"type": "integer",
"format": "int32",
"required": false
},
{
"in": "formData",
"name": "allowed_deals_on_same_pair",
"description": "Allow specific number of deals on the same pair. Multibot only.",
"type": "integer",
"format": "int32",
"required": false
},
{
"in": "formData",
"name": "close_deals_timeout",
"description": "Close bot deals after given number of seconds. Must be greater than 60.",
"type": "integer",
"format": "int32",
"required": false
},
{
"in": "formData",
"name": "min_profit_percentage",
"description": "Min profit to activate close strategy",
"type": "number",
"format": "float",
"required": false
},
{
"in": "formData",
"name": "min_profit_type",
"description": "Percentage: base_order_volume – from base order, total_bought_volume – from total volume",
"type": "string",
"enum": [
"base_order_volume",
"total_bought_volume"
],
"required": false
},
{
"in": "formData",
"name": "close_strategy_list",
"description": "For manual signals: [{\"strategy\":\"manual\"}] or []<br>For non-stop(1 pair only): [{\"strategy\":\"nonstop\", \"options\": {}]<br>QFL: [{\"options\": {\"type\": \"original\"}, {\"percent\": 3}, \"strategy\": \"qfl\"}] <br>TradingView: [{\"options\": {\"time\": \"5m\", \"type\": \"buy_or_strong_buy\"}, \"strategy\": \"trading_view\"}] <br>RSI: [{\"options\": {\"time\": \"5m\", \"points\": 30, \"trigger_condition\": \"less\", \"time_period\": 7}, \"strategy\": \"rsi\"}]",
"type": "array",
"items": {
"type": "json"
},
"required": false
},
{
"in": "formData",
"name": "risk_reduction_percentage",
"description": "Risk reduction percentage",
"type": "number",
"format": "float",
"required": false
},
{
"in": "formData",
"name": "reinvesting_percentage",
"description": "Reinvesting percentage",
"type": "number",
"format": "float",
"required": false
},
{
"in": "formData",
"name": "min_price_percentage",
"description": "Min price percent. Must be greater then -95 and lower then 1000",
"type": "number",
"format": "double",
"required": false
},
{
"in": "formData",
"name": "max_price_percentage",
"description": "Max price percent. Must be greater then -95 and lower then 1000",
"type": "number",
"format": "double",
"required": false
}
],
"responses": {
"201": {
"description": "Create bot (Permission: BOTS_WRITE, Security: SIGNED)"
}
},
"tags": [
"bots"
],
"operationId": "postVer1BotsCreateBot"
}
},
"/ver1/bots": {
"get": {
"description": "User bots (Permission: BOTS_READ, Security: SIGNED)",
"produces": [
"application/json"
],
"parameters": [
{
"in": "query",
"name": "limit",
"description": "Limit records. Max: 100",
"type": "integer",
"format": "int32",
"default": 50,
"required": false
},
{
"in": "query",
"name": "offset",
"description": "Offset records",
"type": "integer",
"format": "int32",
"required": false
},
{
"in": "query",
"name": "from",
"description": "Param for a filter by created date",
"type": "string",
"required": false
},
{
"in": "query",
"name": "account_id",
"description": "Account to show bots on. Return all if not specified. Gather this from GET /ver1/accounts",
"type": "integer",
"format": "int32",
"required": false
},
{
"in": "query",
"name": "scope",
"type": "string",
"default": null,
"enum": [
"enabled",
"disabled"
],
"required": false
},
{
"in": "query",
"name": "strategy",
"type": "string",
"default": null,
"enum": [
"long",
"short"
],
"required": false
},
{
"in": "query",
"name": "sort_by",
"type": "string",
"default": "created_at",
"enum": [
"profit",
"created_at",
"updated_at"
],
"required": false
},
{
"in": "query",
"name": "sort_direction",
"type": "string",
"default": "desc",
"enum": [
"asc",
"desc"
],
"required": false
},
{
"in": "query",
"name": "quote",
"description": "Quote currency",
"type": "string",
"required": false
},
{
"in": "query",
"name": "form_type",
"description": "Param for a filter by bot form type (gordon/advanced)",
"type": "string",
"enum": [
"gordon",
"advanced"
],
"required": false
}
],
"responses": {
"200": {
"description": "User bots (Permission: BOTS_READ, Security: SIGNED)"
}
},
"tags": [
"bots"
],
"operationId": "getVer1Bots"
}
},
"/ver1/bots/stats_by_date": {
"get": {
"description": "Get bot stats by date (Permission: BOTS_READ, Security: SIGNED)",
"produces": [
"application/json"
],
"parameters": [
{
"in": "query",
"name": "date",
"type": "string",
"format": "date",
"required": true
},
{
"in": "query",
"name": "account_id",
"type": "integer",
"format": "int32",
"required": false
},
{
"in": "query",
"name": "bot_id",
"type": "integer",
"format": "int32",
"required": false
}
],
"responses": {
"200": {
"description": "Get bot stats by date (Permission: BOTS_READ, Security: SIGNED)"
}
},
"tags": [
"bots"
],
"operationId": "getVer1BotsStatsByDate"
}
},
"/ver1/bots/stats": {
"get": {
"description": "Get bot stats (Permission: BOTS_READ, Security: SIGNED)",
"produces": [
"application/json"
],
"parameters": [
{
"in": "query",
"name": "account_id",
"description": "Account to show on. Null - show for all. Gather this from GET /ver1/accounts",
"type": "integer",
"format": "int32",
"required": false
},
{
"in": "query",
"name": "bot_id",
"description": "Bots to show on. Null - show for all",
"type": "integer",
"format": "int32",
"required": false
}
],
"responses": {
"200": {
"description": "Get bot stats (Permission: BOTS_READ, Security: SIGNED)"
}
},
"tags": [
"bots"
],
"operationId": "getVer1BotsStats"
}
},
"/ver1/bots/{id}/profit_by_day": {
"get": {
"description": "Get bot profits grouped by day (Permission: BOTS_READ, Security: SIGNED)",
"produces": [
"application/json"
],
"parameters": [
{
"in": "query",
"name": "days",
"type": "integer",
"format": "int32",
"default": 30,
"required": false
},
{
"in": "path",
"name": "id",
"type": "integer",
"format": "int32",
"required": true
}
],
"responses": {
"200": {
"description": "Get bot profits grouped by day (Permission: BOTS_READ, Security: SIGNED)"
}
},
"tags": [
"bots"
],
"operationId": "getVer1BotsIdProfitByDay"
}
},
"/ver1/bots/{bot_id}/copy_and_create": {
"post": {
"description": "POST /bots/:id/copy_and_create. Permission: BOTS_WRITE, Security: SIGNED",
"produces": [
"application/json"
],
"consumes": [
"application/json"
],
"parameters": [
{
"in": "formData",
"name": "name",
"type": "string",
"required": true
},
{
"in": "formData",
"name": "secret",
"type": "string",
"required": true
},
{
"in": "formData",
"name": "amount",
"description": "Max amount for bot usage (Based on current rate)",
"type": "number",
"format": "double",
"required": false
},
{
"in": "path",
"name": "bot_id",
"type": "integer",
"format": "int32",
"required": true
}
],
"responses": {
"201": {
"description": "POST /bots/:id/copy_and_create. Permission: BOTS_WRITE, Security: SIGNED"
}
},
"tags": [
"bots"
],
"operationId": "postVer1BotsBotIdCopyAndCreate"
}
},
"/ver1/bots/{bot_id}/update": {
"patch": {
"description": "Edit bot (Permission: BOTS_WRITE, Security: SIGNED)",
"produces": [
"application/json"
],
"consumes": [
"application/json"
],
"parameters": [
{
"in": "formData",
"name": "name",
"type": "string",
"required": true
},
{
"in": "formData",
"name": "pairs",
"type": "string",
"required": true
},
{
"in": "formData",
"name": "max_active_deals",
"type": "integer",
"format": "int32",
"default": 1,
"required": false
},
{
"in": "formData",
"name": "base_order_volume",
"description": "Base order size",
"type": "number",
"format": "double",
"required": true
},
{
"in": "formData",
"name": "base_order_volume_type",
"description": "base order volume currency",
"type": "string",
"enum": [
"quote_currency",
"base_currency",
"percent",
"xbt"
],
"required": false
},
{
"in": "formData",
"name": "take_profit",
"description": "Target profit(percentage)",
"type": "number",
"format": "double",
"required": true
},
{
"in": "formData",
"name": "take_profit_steps",
"description": "Take profit steps <br>[{\"amount_percentage\": 10, \"profit_percentage\": 10}, <br>{\"amount_percentage\": 20, \"profit_percentage\": 15}, <br>{\"amount_percentage\": 30, \"profit_percentage\": 20}, <br>{\"amount_percentage\": 40, \"profit_percentage\": 23}]",
"type": "array",
"items": {
"type": "json"
},
"required": false
},
{
"in": "formData",
"name": "safety_order_volume",
"description": "Safety trade size",
"type": "number",
"format": "double",
"required": true
},
{
"in": "formData",
"name": "safety_order_volume_type",
"description": "safety order volume currency",
"type": "string",
"enum": [
"quote_currency",
"base_currency",
"percent",
"xbt"
],
"required": false
},