@n8n-dev/n8n-nodes-binance 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/dist/nodes/Binance/resources/auto-invest/index.js +425 -0
  2. package/dist/nodes/Binance/resources/auto-invest/index.js.map +1 -1
  3. package/dist/nodes/Binance/resources/blvt/index.js +150 -0
  4. package/dist/nodes/Binance/resources/blvt/index.js.map +1 -1
  5. package/dist/nodes/Binance/resources/c-2-c/index.js +25 -0
  6. package/dist/nodes/Binance/resources/c-2-c/index.js.map +1 -1
  7. package/dist/nodes/Binance/resources/convert/index.js +200 -0
  8. package/dist/nodes/Binance/resources/convert/index.js.map +1 -1
  9. package/dist/nodes/Binance/resources/copy-trading/index.js +50 -0
  10. package/dist/nodes/Binance/resources/copy-trading/index.js.map +1 -1
  11. package/dist/nodes/Binance/resources/crypto-loans/index.js +525 -0
  12. package/dist/nodes/Binance/resources/crypto-loans/index.js.map +1 -1
  13. package/dist/nodes/Binance/resources/dual-investment/index.js +125 -0
  14. package/dist/nodes/Binance/resources/dual-investment/index.js.map +1 -1
  15. package/dist/nodes/Binance/resources/fiat/index.js +50 -0
  16. package/dist/nodes/Binance/resources/fiat/index.js.map +1 -1
  17. package/dist/nodes/Binance/resources/futures/index.js +75 -0
  18. package/dist/nodes/Binance/resources/futures/index.js.map +1 -1
  19. package/dist/nodes/Binance/resources/futures-algo/index.js +150 -0
  20. package/dist/nodes/Binance/resources/futures-algo/index.js.map +1 -1
  21. package/dist/nodes/Binance/resources/gift-card/index.js +150 -0
  22. package/dist/nodes/Binance/resources/gift-card/index.js.map +1 -1
  23. package/dist/nodes/Binance/resources/isolated-margin-stream/index.js +75 -0
  24. package/dist/nodes/Binance/resources/isolated-margin-stream/index.js.map +1 -1
  25. package/dist/nodes/Binance/resources/margin/index.js +1204 -4
  26. package/dist/nodes/Binance/resources/margin/index.js.map +1 -1
  27. package/dist/nodes/Binance/resources/margin-stream/index.js +75 -0
  28. package/dist/nodes/Binance/resources/margin-stream/index.js.map +1 -1
  29. package/dist/nodes/Binance/resources/mining/index.js +325 -0
  30. package/dist/nodes/Binance/resources/mining/index.js.map +1 -1
  31. package/dist/nodes/Binance/resources/nft/index.js +100 -0
  32. package/dist/nodes/Binance/resources/nft/index.js.map +1 -1
  33. package/dist/nodes/Binance/resources/pay/index.js +25 -0
  34. package/dist/nodes/Binance/resources/pay/index.js.map +1 -1
  35. package/dist/nodes/Binance/resources/portfolio-margin/index.js +325 -0
  36. package/dist/nodes/Binance/resources/portfolio-margin/index.js.map +1 -1
  37. package/dist/nodes/Binance/resources/rebate/index.js +25 -0
  38. package/dist/nodes/Binance/resources/rebate/index.js.map +1 -1
  39. package/dist/nodes/Binance/resources/savings/index.js +100 -0
  40. package/dist/nodes/Binance/resources/savings/index.js.map +1 -1
  41. package/dist/nodes/Binance/resources/simple-earn/index.js +600 -0
  42. package/dist/nodes/Binance/resources/simple-earn/index.js.map +1 -1
  43. package/dist/nodes/Binance/resources/spot-algo/index.js +125 -0
  44. package/dist/nodes/Binance/resources/spot-algo/index.js.map +1 -1
  45. package/dist/nodes/Binance/resources/staking/index.js +300 -0
  46. package/dist/nodes/Binance/resources/staking/index.js.map +1 -1
  47. package/dist/nodes/Binance/resources/stream/index.js +75 -0
  48. package/dist/nodes/Binance/resources/stream/index.js.map +1 -1
  49. package/dist/nodes/Binance/resources/sub-account/index.js +1105 -5
  50. package/dist/nodes/Binance/resources/sub-account/index.js.map +1 -1
  51. package/dist/nodes/Binance/resources/trade/index.js +575 -0
  52. package/dist/nodes/Binance/resources/trade/index.js.map +1 -1
  53. package/dist/nodes/Binance/resources/vip-loans/index.js +250 -0
  54. package/dist/nodes/Binance/resources/vip-loans/index.js.map +1 -1
  55. package/dist/nodes/Binance/resources/wallet/index.js +829 -4
  56. package/dist/nodes/Binance/resources/wallet/index.js.map +1 -1
  57. package/dist/package.json +1 -1
  58. package/dist/tsconfig.tsbuildinfo +1 -1
  59. package/package.json +1 -1
@@ -541,6 +541,31 @@ exports.walletDescription = [
541
541
  }
542
542
  }
543
543
  },
544
+ {
545
+ "displayName": "X MBX APIKEY (Header)",
546
+ "name": "security_apikeyauth",
547
+ "type": "string",
548
+ "default": "",
549
+ "description": "Binance Public API Key",
550
+ "required": false,
551
+ "routing": {
552
+ "request": {
553
+ "headers": {
554
+ "X-MBX-APIKEY": "={{ $value }}"
555
+ }
556
+ }
557
+ },
558
+ "displayOptions": {
559
+ "show": {
560
+ "resource": [
561
+ "Wallet"
562
+ ],
563
+ "operation": [
564
+ "GET Sapi V 1 Capital Config Getall"
565
+ ]
566
+ }
567
+ }
568
+ },
544
569
  {
545
570
  "displayName": "GET /sapi/v1/accountSnapshot",
546
571
  "name": "operation",
@@ -750,6 +775,31 @@ exports.walletDescription = [
750
775
  }
751
776
  }
752
777
  },
778
+ {
779
+ "displayName": "X MBX APIKEY (Header)",
780
+ "name": "security_apikeyauth",
781
+ "type": "string",
782
+ "default": "",
783
+ "description": "Binance Public API Key",
784
+ "required": false,
785
+ "routing": {
786
+ "request": {
787
+ "headers": {
788
+ "X-MBX-APIKEY": "={{ $value }}"
789
+ }
790
+ }
791
+ },
792
+ "displayOptions": {
793
+ "show": {
794
+ "resource": [
795
+ "Wallet"
796
+ ],
797
+ "operation": [
798
+ "GET Sapi V 1 Account Snapshot"
799
+ ]
800
+ }
801
+ }
802
+ },
753
803
  {
754
804
  "displayName": "POST /sapi/v1/account/disableFastWithdrawSwitch",
755
805
  "name": "operation",
@@ -846,6 +896,31 @@ exports.walletDescription = [
846
896
  }
847
897
  }
848
898
  },
899
+ {
900
+ "displayName": "X MBX APIKEY (Header)",
901
+ "name": "security_apikeyauth",
902
+ "type": "string",
903
+ "default": "",
904
+ "description": "Binance Public API Key",
905
+ "required": false,
906
+ "routing": {
907
+ "request": {
908
+ "headers": {
909
+ "X-MBX-APIKEY": "={{ $value }}"
910
+ }
911
+ }
912
+ },
913
+ "displayOptions": {
914
+ "show": {
915
+ "resource": [
916
+ "Wallet"
917
+ ],
918
+ "operation": [
919
+ "POST Sapi V 1 Account Disable Fast Withdraw Switch"
920
+ ]
921
+ }
922
+ }
923
+ },
849
924
  {
850
925
  "displayName": "POST /sapi/v1/account/enableFastWithdrawSwitch",
851
926
  "name": "operation",
@@ -942,6 +1017,31 @@ exports.walletDescription = [
942
1017
  }
943
1018
  }
944
1019
  },
1020
+ {
1021
+ "displayName": "X MBX APIKEY (Header)",
1022
+ "name": "security_apikeyauth",
1023
+ "type": "string",
1024
+ "default": "",
1025
+ "description": "Binance Public API Key",
1026
+ "required": false,
1027
+ "routing": {
1028
+ "request": {
1029
+ "headers": {
1030
+ "X-MBX-APIKEY": "={{ $value }}"
1031
+ }
1032
+ }
1033
+ },
1034
+ "displayOptions": {
1035
+ "show": {
1036
+ "resource": [
1037
+ "Wallet"
1038
+ ],
1039
+ "operation": [
1040
+ "POST Sapi V 1 Account Enable Fast Withdraw Switch"
1041
+ ]
1042
+ }
1043
+ }
1044
+ },
945
1045
  {
946
1046
  "displayName": "POST /sapi/v1/capital/withdraw/apply",
947
1047
  "name": "operation",
@@ -1262,6 +1362,31 @@ exports.walletDescription = [
1262
1362
  }
1263
1363
  }
1264
1364
  },
1365
+ {
1366
+ "displayName": "X MBX APIKEY (Header)",
1367
+ "name": "security_apikeyauth",
1368
+ "type": "string",
1369
+ "default": "",
1370
+ "description": "Binance Public API Key",
1371
+ "required": false,
1372
+ "routing": {
1373
+ "request": {
1374
+ "headers": {
1375
+ "X-MBX-APIKEY": "={{ $value }}"
1376
+ }
1377
+ }
1378
+ },
1379
+ "displayOptions": {
1380
+ "show": {
1381
+ "resource": [
1382
+ "Wallet"
1383
+ ],
1384
+ "operation": [
1385
+ "POST Sapi V 1 Capital Withdraw Apply"
1386
+ ]
1387
+ }
1388
+ }
1389
+ },
1265
1390
  {
1266
1391
  "displayName": "GET /sapi/v1/capital/deposit/hisrec",
1267
1392
  "name": "operation",
@@ -1507,6 +1632,31 @@ exports.walletDescription = [
1507
1632
  }
1508
1633
  }
1509
1634
  },
1635
+ {
1636
+ "displayName": "X MBX APIKEY (Header)",
1637
+ "name": "security_apikeyauth",
1638
+ "type": "string",
1639
+ "default": "",
1640
+ "description": "Binance Public API Key",
1641
+ "required": false,
1642
+ "routing": {
1643
+ "request": {
1644
+ "headers": {
1645
+ "X-MBX-APIKEY": "={{ $value }}"
1646
+ }
1647
+ }
1648
+ },
1649
+ "displayOptions": {
1650
+ "show": {
1651
+ "resource": [
1652
+ "Wallet"
1653
+ ],
1654
+ "operation": [
1655
+ "GET Sapi V 1 Capital Deposit Hisrec"
1656
+ ]
1657
+ }
1658
+ }
1659
+ },
1510
1660
  {
1511
1661
  "displayName": "GET /sapi/v1/capital/withdraw/history",
1512
1662
  "name": "operation",
@@ -1776,6 +1926,31 @@ exports.walletDescription = [
1776
1926
  }
1777
1927
  }
1778
1928
  },
1929
+ {
1930
+ "displayName": "X MBX APIKEY (Header)",
1931
+ "name": "security_apikeyauth",
1932
+ "type": "string",
1933
+ "default": "",
1934
+ "description": "Binance Public API Key",
1935
+ "required": false,
1936
+ "routing": {
1937
+ "request": {
1938
+ "headers": {
1939
+ "X-MBX-APIKEY": "={{ $value }}"
1940
+ }
1941
+ }
1942
+ },
1943
+ "displayOptions": {
1944
+ "show": {
1945
+ "resource": [
1946
+ "Wallet"
1947
+ ],
1948
+ "operation": [
1949
+ "GET Sapi V 1 Capital Withdraw History"
1950
+ ]
1951
+ }
1952
+ }
1953
+ },
1779
1954
  {
1780
1955
  "displayName": "GET /sapi/v1/capital/deposit/address",
1781
1956
  "name": "operation",
@@ -1922,6 +2097,31 @@ exports.walletDescription = [
1922
2097
  }
1923
2098
  }
1924
2099
  },
2100
+ {
2101
+ "displayName": "X MBX APIKEY (Header)",
2102
+ "name": "security_apikeyauth",
2103
+ "type": "string",
2104
+ "default": "",
2105
+ "description": "Binance Public API Key",
2106
+ "required": false,
2107
+ "routing": {
2108
+ "request": {
2109
+ "headers": {
2110
+ "X-MBX-APIKEY": "={{ $value }}"
2111
+ }
2112
+ }
2113
+ },
2114
+ "displayOptions": {
2115
+ "show": {
2116
+ "resource": [
2117
+ "Wallet"
2118
+ ],
2119
+ "operation": [
2120
+ "GET Sapi V 1 Capital Deposit Address"
2121
+ ]
2122
+ }
2123
+ }
2124
+ },
1925
2125
  {
1926
2126
  "displayName": "GET /sapi/v1/account/status",
1927
2127
  "name": "operation",
@@ -2018,6 +2218,31 @@ exports.walletDescription = [
2018
2218
  }
2019
2219
  }
2020
2220
  },
2221
+ {
2222
+ "displayName": "X MBX APIKEY (Header)",
2223
+ "name": "security_apikeyauth",
2224
+ "type": "string",
2225
+ "default": "",
2226
+ "description": "Binance Public API Key",
2227
+ "required": false,
2228
+ "routing": {
2229
+ "request": {
2230
+ "headers": {
2231
+ "X-MBX-APIKEY": "={{ $value }}"
2232
+ }
2233
+ }
2234
+ },
2235
+ "displayOptions": {
2236
+ "show": {
2237
+ "resource": [
2238
+ "Wallet"
2239
+ ],
2240
+ "operation": [
2241
+ "GET Sapi V 1 Account Status"
2242
+ ]
2243
+ }
2244
+ }
2245
+ },
2021
2246
  {
2022
2247
  "displayName": "GET /sapi/v1/account/apiTradingStatus",
2023
2248
  "name": "operation",
@@ -2114,6 +2339,31 @@ exports.walletDescription = [
2114
2339
  }
2115
2340
  }
2116
2341
  },
2342
+ {
2343
+ "displayName": "X MBX APIKEY (Header)",
2344
+ "name": "security_apikeyauth",
2345
+ "type": "string",
2346
+ "default": "",
2347
+ "description": "Binance Public API Key",
2348
+ "required": false,
2349
+ "routing": {
2350
+ "request": {
2351
+ "headers": {
2352
+ "X-MBX-APIKEY": "={{ $value }}"
2353
+ }
2354
+ }
2355
+ },
2356
+ "displayOptions": {
2357
+ "show": {
2358
+ "resource": [
2359
+ "Wallet"
2360
+ ],
2361
+ "operation": [
2362
+ "GET Sapi V 1 Account Api Trading Status"
2363
+ ]
2364
+ }
2365
+ }
2366
+ },
2117
2367
  {
2118
2368
  "displayName": "GET /sapi/v1/asset/dribblet",
2119
2369
  "name": "operation",
@@ -2295,6 +2545,31 @@ exports.walletDescription = [
2295
2545
  }
2296
2546
  }
2297
2547
  },
2548
+ {
2549
+ "displayName": "X MBX APIKEY (Header)",
2550
+ "name": "security_apikeyauth",
2551
+ "type": "string",
2552
+ "default": "",
2553
+ "description": "Binance Public API Key",
2554
+ "required": false,
2555
+ "routing": {
2556
+ "request": {
2557
+ "headers": {
2558
+ "X-MBX-APIKEY": "={{ $value }}"
2559
+ }
2560
+ }
2561
+ },
2562
+ "displayOptions": {
2563
+ "show": {
2564
+ "resource": [
2565
+ "Wallet"
2566
+ ],
2567
+ "operation": [
2568
+ "GET Sapi V 1 Asset Dribblet"
2569
+ ]
2570
+ }
2571
+ }
2572
+ },
2298
2573
  {
2299
2574
  "displayName": "POST /sapi/v1/asset/dust-btc",
2300
2575
  "name": "operation",
@@ -2426,6 +2701,31 @@ exports.walletDescription = [
2426
2701
  }
2427
2702
  }
2428
2703
  },
2704
+ {
2705
+ "displayName": "X MBX APIKEY (Header)",
2706
+ "name": "security_apikeyauth",
2707
+ "type": "string",
2708
+ "default": "",
2709
+ "description": "Binance Public API Key",
2710
+ "required": false,
2711
+ "routing": {
2712
+ "request": {
2713
+ "headers": {
2714
+ "X-MBX-APIKEY": "={{ $value }}"
2715
+ }
2716
+ }
2717
+ },
2718
+ "displayOptions": {
2719
+ "show": {
2720
+ "resource": [
2721
+ "Wallet"
2722
+ ],
2723
+ "operation": [
2724
+ "POST Sapi V 1 Asset Dust Btc"
2725
+ ]
2726
+ }
2727
+ }
2728
+ },
2429
2729
  {
2430
2730
  "displayName": "POST /sapi/v1/asset/dust",
2431
2731
  "name": "operation",
@@ -2583,6 +2883,31 @@ exports.walletDescription = [
2583
2883
  }
2584
2884
  }
2585
2885
  },
2886
+ {
2887
+ "displayName": "X MBX APIKEY (Header)",
2888
+ "name": "security_apikeyauth",
2889
+ "type": "string",
2890
+ "default": "",
2891
+ "description": "Binance Public API Key",
2892
+ "required": false,
2893
+ "routing": {
2894
+ "request": {
2895
+ "headers": {
2896
+ "X-MBX-APIKEY": "={{ $value }}"
2897
+ }
2898
+ }
2899
+ },
2900
+ "displayOptions": {
2901
+ "show": {
2902
+ "resource": [
2903
+ "Wallet"
2904
+ ],
2905
+ "operation": [
2906
+ "POST Sapi V 1 Asset Dust"
2907
+ ]
2908
+ }
2909
+ }
2910
+ },
2586
2911
  {
2587
2912
  "displayName": "GET /sapi/v1/asset/assetDividend",
2588
2913
  "name": "operation",
@@ -2777,6 +3102,31 @@ exports.walletDescription = [
2777
3102
  }
2778
3103
  }
2779
3104
  },
3105
+ {
3106
+ "displayName": "X MBX APIKEY (Header)",
3107
+ "name": "security_apikeyauth",
3108
+ "type": "string",
3109
+ "default": "",
3110
+ "description": "Binance Public API Key",
3111
+ "required": false,
3112
+ "routing": {
3113
+ "request": {
3114
+ "headers": {
3115
+ "X-MBX-APIKEY": "={{ $value }}"
3116
+ }
3117
+ }
3118
+ },
3119
+ "displayOptions": {
3120
+ "show": {
3121
+ "resource": [
3122
+ "Wallet"
3123
+ ],
3124
+ "operation": [
3125
+ "GET Sapi V 1 Asset Asset Dividend"
3126
+ ]
3127
+ }
3128
+ }
3129
+ },
2780
3130
  {
2781
3131
  "displayName": "GET /sapi/v1/asset/assetDetail",
2782
3132
  "name": "operation",
@@ -2898,10 +3248,35 @@ exports.walletDescription = [
2898
3248
  }
2899
3249
  },
2900
3250
  {
2901
- "displayName": "GET /sapi/v1/asset/tradeFee",
2902
- "name": "operation",
2903
- "type": "notice",
2904
- "typeOptions": {
3251
+ "displayName": "X MBX APIKEY (Header)",
3252
+ "name": "security_apikeyauth",
3253
+ "type": "string",
3254
+ "default": "",
3255
+ "description": "Binance Public API Key",
3256
+ "required": false,
3257
+ "routing": {
3258
+ "request": {
3259
+ "headers": {
3260
+ "X-MBX-APIKEY": "={{ $value }}"
3261
+ }
3262
+ }
3263
+ },
3264
+ "displayOptions": {
3265
+ "show": {
3266
+ "resource": [
3267
+ "Wallet"
3268
+ ],
3269
+ "operation": [
3270
+ "GET Sapi V 1 Asset Asset Detail"
3271
+ ]
3272
+ }
3273
+ }
3274
+ },
3275
+ {
3276
+ "displayName": "GET /sapi/v1/asset/tradeFee",
3277
+ "name": "operation",
3278
+ "type": "notice",
3279
+ "typeOptions": {
2905
3280
  "theme": "info"
2906
3281
  },
2907
3282
  "default": "",
@@ -3018,6 +3393,31 @@ exports.walletDescription = [
3018
3393
  }
3019
3394
  }
3020
3395
  },
3396
+ {
3397
+ "displayName": "X MBX APIKEY (Header)",
3398
+ "name": "security_apikeyauth",
3399
+ "type": "string",
3400
+ "default": "",
3401
+ "description": "Binance Public API Key",
3402
+ "required": false,
3403
+ "routing": {
3404
+ "request": {
3405
+ "headers": {
3406
+ "X-MBX-APIKEY": "={{ $value }}"
3407
+ }
3408
+ }
3409
+ },
3410
+ "displayOptions": {
3411
+ "show": {
3412
+ "resource": [
3413
+ "Wallet"
3414
+ ],
3415
+ "operation": [
3416
+ "GET Sapi V 1 Asset Trade Fee"
3417
+ ]
3418
+ }
3419
+ }
3420
+ },
3021
3421
  {
3022
3422
  "displayName": "GET /sapi/v1/asset/transfer",
3023
3423
  "name": "operation",
@@ -3404,6 +3804,31 @@ exports.walletDescription = [
3404
3804
  }
3405
3805
  }
3406
3806
  },
3807
+ {
3808
+ "displayName": "X MBX APIKEY (Header)",
3809
+ "name": "security_apikeyauth",
3810
+ "type": "string",
3811
+ "default": "",
3812
+ "description": "Binance Public API Key",
3813
+ "required": false,
3814
+ "routing": {
3815
+ "request": {
3816
+ "headers": {
3817
+ "X-MBX-APIKEY": "={{ $value }}"
3818
+ }
3819
+ }
3820
+ },
3821
+ "displayOptions": {
3822
+ "show": {
3823
+ "resource": [
3824
+ "Wallet"
3825
+ ],
3826
+ "operation": [
3827
+ "GET Sapi V 1 Asset Transfer"
3828
+ ]
3829
+ }
3830
+ }
3831
+ },
3407
3832
  {
3408
3833
  "displayName": "POST /sapi/v1/asset/transfer",
3409
3834
  "name": "operation",
@@ -3740,6 +4165,31 @@ exports.walletDescription = [
3740
4165
  }
3741
4166
  }
3742
4167
  },
4168
+ {
4169
+ "displayName": "X MBX APIKEY (Header)",
4170
+ "name": "security_apikeyauth",
4171
+ "type": "string",
4172
+ "default": "",
4173
+ "description": "Binance Public API Key",
4174
+ "required": false,
4175
+ "routing": {
4176
+ "request": {
4177
+ "headers": {
4178
+ "X-MBX-APIKEY": "={{ $value }}"
4179
+ }
4180
+ }
4181
+ },
4182
+ "displayOptions": {
4183
+ "show": {
4184
+ "resource": [
4185
+ "Wallet"
4186
+ ],
4187
+ "operation": [
4188
+ "POST Sapi V 1 Asset Transfer"
4189
+ ]
4190
+ }
4191
+ }
4192
+ },
3743
4193
  {
3744
4194
  "displayName": "POST /sapi/v1/asset/get-funding-asset",
3745
4195
  "name": "operation",
@@ -3894,6 +4344,31 @@ exports.walletDescription = [
3894
4344
  }
3895
4345
  }
3896
4346
  },
4347
+ {
4348
+ "displayName": "X MBX APIKEY (Header)",
4349
+ "name": "security_apikeyauth",
4350
+ "type": "string",
4351
+ "default": "",
4352
+ "description": "Binance Public API Key",
4353
+ "required": false,
4354
+ "routing": {
4355
+ "request": {
4356
+ "headers": {
4357
+ "X-MBX-APIKEY": "={{ $value }}"
4358
+ }
4359
+ }
4360
+ },
4361
+ "displayOptions": {
4362
+ "show": {
4363
+ "resource": [
4364
+ "Wallet"
4365
+ ],
4366
+ "operation": [
4367
+ "POST Sapi V 1 Asset Get Funding Asset"
4368
+ ]
4369
+ }
4370
+ }
4371
+ },
3897
4372
  {
3898
4373
  "displayName": "POST /sapi/v3/asset/getUserAsset",
3899
4374
  "name": "operation",
@@ -4048,6 +4523,31 @@ exports.walletDescription = [
4048
4523
  }
4049
4524
  }
4050
4525
  },
4526
+ {
4527
+ "displayName": "X MBX APIKEY (Header)",
4528
+ "name": "security_apikeyauth",
4529
+ "type": "string",
4530
+ "default": "",
4531
+ "description": "Binance Public API Key",
4532
+ "required": false,
4533
+ "routing": {
4534
+ "request": {
4535
+ "headers": {
4536
+ "X-MBX-APIKEY": "={{ $value }}"
4537
+ }
4538
+ }
4539
+ },
4540
+ "displayOptions": {
4541
+ "show": {
4542
+ "resource": [
4543
+ "Wallet"
4544
+ ],
4545
+ "operation": [
4546
+ "POST Sapi V 3 Asset Get User Asset"
4547
+ ]
4548
+ }
4549
+ }
4550
+ },
4051
4551
  {
4052
4552
  "displayName": "POST /sapi/v1/asset/convert-transfer",
4053
4553
  "name": "operation",
@@ -4246,6 +4746,31 @@ exports.walletDescription = [
4246
4746
  }
4247
4747
  }
4248
4748
  },
4749
+ {
4750
+ "displayName": "X MBX APIKEY (Header)",
4751
+ "name": "security_apikeyauth",
4752
+ "type": "string",
4753
+ "default": "",
4754
+ "description": "Binance Public API Key",
4755
+ "required": false,
4756
+ "routing": {
4757
+ "request": {
4758
+ "headers": {
4759
+ "X-MBX-APIKEY": "={{ $value }}"
4760
+ }
4761
+ }
4762
+ },
4763
+ "displayOptions": {
4764
+ "show": {
4765
+ "resource": [
4766
+ "Wallet"
4767
+ ],
4768
+ "operation": [
4769
+ "POST Sapi V 1 Asset Convert Transfer"
4770
+ ]
4771
+ }
4772
+ }
4773
+ },
4249
4774
  {
4250
4775
  "displayName": "GET /sapi/v1/asset/convert-transfer/queryByPage",
4251
4776
  "name": "operation",
@@ -4529,6 +5054,31 @@ exports.walletDescription = [
4529
5054
  }
4530
5055
  }
4531
5056
  },
5057
+ {
5058
+ "displayName": "X MBX APIKEY (Header)",
5059
+ "name": "security_apikeyauth",
5060
+ "type": "string",
5061
+ "default": "",
5062
+ "description": "Binance Public API Key",
5063
+ "required": false,
5064
+ "routing": {
5065
+ "request": {
5066
+ "headers": {
5067
+ "X-MBX-APIKEY": "={{ $value }}"
5068
+ }
5069
+ }
5070
+ },
5071
+ "displayOptions": {
5072
+ "show": {
5073
+ "resource": [
5074
+ "Wallet"
5075
+ ],
5076
+ "operation": [
5077
+ "GET Sapi V 1 Asset Convert Transfer Query By Page"
5078
+ ]
5079
+ }
5080
+ }
5081
+ },
4532
5082
  {
4533
5083
  "displayName": "GET /sapi/v1/asset/ledger-transfer/cloud-mining/queryByPage",
4534
5084
  "name": "operation",
@@ -4802,6 +5352,31 @@ exports.walletDescription = [
4802
5352
  }
4803
5353
  }
4804
5354
  },
5355
+ {
5356
+ "displayName": "X MBX APIKEY (Header)",
5357
+ "name": "security_apikeyauth",
5358
+ "type": "string",
5359
+ "default": "",
5360
+ "description": "Binance Public API Key",
5361
+ "required": false,
5362
+ "routing": {
5363
+ "request": {
5364
+ "headers": {
5365
+ "X-MBX-APIKEY": "={{ $value }}"
5366
+ }
5367
+ }
5368
+ },
5369
+ "displayOptions": {
5370
+ "show": {
5371
+ "resource": [
5372
+ "Wallet"
5373
+ ],
5374
+ "operation": [
5375
+ "GET Sapi V 1 Asset Ledger Transfer Cloud Mining Query By Page"
5376
+ ]
5377
+ }
5378
+ }
5379
+ },
4805
5380
  {
4806
5381
  "displayName": "GET /sapi/v1/account/apiRestrictions",
4807
5382
  "name": "operation",
@@ -4898,6 +5473,31 @@ exports.walletDescription = [
4898
5473
  }
4899
5474
  }
4900
5475
  },
5476
+ {
5477
+ "displayName": "X MBX APIKEY (Header)",
5478
+ "name": "security_apikeyauth",
5479
+ "type": "string",
5480
+ "default": "",
5481
+ "description": "Binance Public API Key",
5482
+ "required": false,
5483
+ "routing": {
5484
+ "request": {
5485
+ "headers": {
5486
+ "X-MBX-APIKEY": "={{ $value }}"
5487
+ }
5488
+ }
5489
+ },
5490
+ "displayOptions": {
5491
+ "show": {
5492
+ "resource": [
5493
+ "Wallet"
5494
+ ],
5495
+ "operation": [
5496
+ "GET Sapi V 1 Account Api Restrictions"
5497
+ ]
5498
+ }
5499
+ }
5500
+ },
4901
5501
  {
4902
5502
  "displayName": "GET /sapi/v1/capital/contract/convertible-coins",
4903
5503
  "name": "operation",
@@ -4917,6 +5517,31 @@ exports.walletDescription = [
4917
5517
  }
4918
5518
  }
4919
5519
  },
5520
+ {
5521
+ "displayName": "X MBX APIKEY (Header)",
5522
+ "name": "security_apikeyauth",
5523
+ "type": "string",
5524
+ "default": "",
5525
+ "description": "Binance Public API Key",
5526
+ "required": false,
5527
+ "routing": {
5528
+ "request": {
5529
+ "headers": {
5530
+ "X-MBX-APIKEY": "={{ $value }}"
5531
+ }
5532
+ }
5533
+ },
5534
+ "displayOptions": {
5535
+ "show": {
5536
+ "resource": [
5537
+ "Wallet"
5538
+ ],
5539
+ "operation": [
5540
+ "GET Sapi V 1 Capital Contract Convertible Coins"
5541
+ ]
5542
+ }
5543
+ }
5544
+ },
4920
5545
  {
4921
5546
  "displayName": "POST /sapi/v1/capital/contract/convertible-coins",
4922
5547
  "name": "operation",
@@ -4988,6 +5613,31 @@ exports.walletDescription = [
4988
5613
  }
4989
5614
  }
4990
5615
  },
5616
+ {
5617
+ "displayName": "X MBX APIKEY (Header)",
5618
+ "name": "security_apikeyauth",
5619
+ "type": "string",
5620
+ "default": "",
5621
+ "description": "Binance Public API Key",
5622
+ "required": false,
5623
+ "routing": {
5624
+ "request": {
5625
+ "headers": {
5626
+ "X-MBX-APIKEY": "={{ $value }}"
5627
+ }
5628
+ }
5629
+ },
5630
+ "displayOptions": {
5631
+ "show": {
5632
+ "resource": [
5633
+ "Wallet"
5634
+ ],
5635
+ "operation": [
5636
+ "POST Sapi V 1 Capital Contract Convertible Coins"
5637
+ ]
5638
+ }
5639
+ }
5640
+ },
4991
5641
  {
4992
5642
  "displayName": "POST /sapi/v1/capital/deposit/credit-apply",
4993
5643
  "name": "operation",
@@ -5182,6 +5832,31 @@ exports.walletDescription = [
5182
5832
  }
5183
5833
  }
5184
5834
  },
5835
+ {
5836
+ "displayName": "X MBX APIKEY (Header)",
5837
+ "name": "security_apikeyauth",
5838
+ "type": "string",
5839
+ "default": "",
5840
+ "description": "Binance Public API Key",
5841
+ "required": false,
5842
+ "routing": {
5843
+ "request": {
5844
+ "headers": {
5845
+ "X-MBX-APIKEY": "={{ $value }}"
5846
+ }
5847
+ }
5848
+ },
5849
+ "displayOptions": {
5850
+ "show": {
5851
+ "resource": [
5852
+ "Wallet"
5853
+ ],
5854
+ "operation": [
5855
+ "POST Sapi V 1 Capital Deposit Credit Apply"
5856
+ ]
5857
+ }
5858
+ }
5859
+ },
5185
5860
  {
5186
5861
  "displayName": "GET /sapi/v1/asset/wallet/balance",
5187
5862
  "name": "operation",
@@ -5278,6 +5953,31 @@ exports.walletDescription = [
5278
5953
  }
5279
5954
  }
5280
5955
  },
5956
+ {
5957
+ "displayName": "X MBX APIKEY (Header)",
5958
+ "name": "security_apikeyauth",
5959
+ "type": "string",
5960
+ "default": "",
5961
+ "description": "Binance Public API Key",
5962
+ "required": false,
5963
+ "routing": {
5964
+ "request": {
5965
+ "headers": {
5966
+ "X-MBX-APIKEY": "={{ $value }}"
5967
+ }
5968
+ }
5969
+ },
5970
+ "displayOptions": {
5971
+ "show": {
5972
+ "resource": [
5973
+ "Wallet"
5974
+ ],
5975
+ "operation": [
5976
+ "GET Sapi V 1 Asset Wallet Balance"
5977
+ ]
5978
+ }
5979
+ }
5980
+ },
5281
5981
  {
5282
5982
  "displayName": "GET /sapi/v1/asset/custody/transfer-history",
5283
5983
  "name": "operation",
@@ -5548,6 +6248,31 @@ exports.walletDescription = [
5548
6248
  }
5549
6249
  }
5550
6250
  },
6251
+ {
6252
+ "displayName": "X MBX APIKEY (Header)",
6253
+ "name": "security_apikeyauth",
6254
+ "type": "string",
6255
+ "default": "",
6256
+ "description": "Binance Public API Key",
6257
+ "required": false,
6258
+ "routing": {
6259
+ "request": {
6260
+ "headers": {
6261
+ "X-MBX-APIKEY": "={{ $value }}"
6262
+ }
6263
+ }
6264
+ },
6265
+ "displayOptions": {
6266
+ "show": {
6267
+ "resource": [
6268
+ "Wallet"
6269
+ ],
6270
+ "operation": [
6271
+ "GET Sapi V 1 Asset Custody Transfer History"
6272
+ ]
6273
+ }
6274
+ }
6275
+ },
5551
6276
  {
5552
6277
  "displayName": "GET /sapi/v1/capital/deposit/address/list",
5553
6278
  "name": "operation",
@@ -5693,6 +6418,31 @@ exports.walletDescription = [
5693
6418
  }
5694
6419
  }
5695
6420
  },
6421
+ {
6422
+ "displayName": "X MBX APIKEY (Header)",
6423
+ "name": "security_apikeyauth",
6424
+ "type": "string",
6425
+ "default": "",
6426
+ "description": "Binance Public API Key",
6427
+ "required": false,
6428
+ "routing": {
6429
+ "request": {
6430
+ "headers": {
6431
+ "X-MBX-APIKEY": "={{ $value }}"
6432
+ }
6433
+ }
6434
+ },
6435
+ "displayOptions": {
6436
+ "show": {
6437
+ "resource": [
6438
+ "Wallet"
6439
+ ],
6440
+ "operation": [
6441
+ "GET Sapi V 1 Capital Deposit Address List"
6442
+ ]
6443
+ }
6444
+ }
6445
+ },
5696
6446
  {
5697
6447
  "displayName": "GET /sapi/v1/spot/delist-schedule",
5698
6448
  "name": "operation",
@@ -5789,6 +6539,31 @@ exports.walletDescription = [
5789
6539
  }
5790
6540
  }
5791
6541
  },
6542
+ {
6543
+ "displayName": "X MBX APIKEY (Header)",
6544
+ "name": "security_apikeyauth",
6545
+ "type": "string",
6546
+ "default": "",
6547
+ "description": "Binance Public API Key",
6548
+ "required": false,
6549
+ "routing": {
6550
+ "request": {
6551
+ "headers": {
6552
+ "X-MBX-APIKEY": "={{ $value }}"
6553
+ }
6554
+ }
6555
+ },
6556
+ "displayOptions": {
6557
+ "show": {
6558
+ "resource": [
6559
+ "Wallet"
6560
+ ],
6561
+ "operation": [
6562
+ "GET Sapi V 1 Spot Delist Schedule"
6563
+ ]
6564
+ }
6565
+ }
6566
+ },
5792
6567
  {
5793
6568
  "displayName": "GET /sapi/v1/capital/withdraw/address/list",
5794
6569
  "name": "operation",
@@ -5808,6 +6583,31 @@ exports.walletDescription = [
5808
6583
  }
5809
6584
  }
5810
6585
  },
6586
+ {
6587
+ "displayName": "X MBX APIKEY (Header)",
6588
+ "name": "security_apikeyauth",
6589
+ "type": "string",
6590
+ "default": "",
6591
+ "description": "Binance Public API Key",
6592
+ "required": false,
6593
+ "routing": {
6594
+ "request": {
6595
+ "headers": {
6596
+ "X-MBX-APIKEY": "={{ $value }}"
6597
+ }
6598
+ }
6599
+ },
6600
+ "displayOptions": {
6601
+ "show": {
6602
+ "resource": [
6603
+ "Wallet"
6604
+ ],
6605
+ "operation": [
6606
+ "GET Sapi V 1 Capital Withdraw Address List"
6607
+ ]
6608
+ }
6609
+ }
6610
+ },
5811
6611
  {
5812
6612
  "displayName": "GET /sapi/v1/account/info",
5813
6613
  "name": "operation",
@@ -5904,5 +6704,30 @@ exports.walletDescription = [
5904
6704
  }
5905
6705
  }
5906
6706
  },
6707
+ {
6708
+ "displayName": "X MBX APIKEY (Header)",
6709
+ "name": "security_apikeyauth",
6710
+ "type": "string",
6711
+ "default": "",
6712
+ "description": "Binance Public API Key",
6713
+ "required": false,
6714
+ "routing": {
6715
+ "request": {
6716
+ "headers": {
6717
+ "X-MBX-APIKEY": "={{ $value }}"
6718
+ }
6719
+ }
6720
+ },
6721
+ "displayOptions": {
6722
+ "show": {
6723
+ "resource": [
6724
+ "Wallet"
6725
+ ],
6726
+ "operation": [
6727
+ "GET Sapi V 1 Account Info"
6728
+ ]
6729
+ }
6730
+ }
6731
+ },
5907
6732
  ];
5908
6733
  //# sourceMappingURL=index.js.map