monaco-sdk 0.8.1

Typed Rust client for the Monaco REST API — generated from the OpenAPI specification
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
openapi: 3.0.3
info:
  title: Monaco Protocol API
  description: REST API for the Monaco Protocol hybrid CLOB exchange.
  version: 1.0.0
servers:
- url: https://develop.apimonaco.xyz
  description: Development server
- url: https://staging.apimonaco.xyz
  description: Staging server (Testnet)
paths:
  /api/v1/accounts/balances:
    get:
      tags:
      - AccountsService
      - Accounts
      summary: Get user balances
      description: |-
        Get user balances.

         Get the current user's token balances with pagination support. Returns
         available, locked, and total balance for each token.
      operationId: get_user_balances
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 10000
        description: Page number (1-indexed)
      - name: page_size
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 100
          default: 20
        description: Items per page (max 100)
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetBalancesResponse'
        '400':
          description: Invalid request
        '401':
          description: Authentication required
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/accounts/balances/{asset_id}:
    get:
      tags:
      - AccountsService
      - Accounts
      summary: Get user balance by asset
      description: |-
        Get user balance by asset.

         Get the current user's balance for a specific asset. Returns available,
         locked, and total balance. If no balance exists for a valid asset, returns
         zero balances. If the asset ID is invalid or not found, returns 404.
      operationId: get_user_balance_by_asset
      parameters:
      - name: asset_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetBalanceByAssetResponse'
        '400':
          description: Invalid request
        '401':
          description: Authentication required
        '404':
          description: Asset not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/accounts/me:
    get:
      tags:
      - AccountsService
      - Accounts
      summary: Get user profile
      description: |-
        Get user profile.

         Get the current user's profile with token balances, recent movements,
         and recent orders. Use `source` to control data source: `hot_storage`
         (fast, real-time), `cold_storage` (historical), or `both` (hybrid).
      operationId: get_user_profile
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetProfileResponse'
        '400':
          description: Invalid request
        '401':
          description: Authentication required
        '404':
          description: User not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/accounts/me/portfolio:
    get:
      tags:
      - AccountsService
      - Accounts
      summary: Get portfolio stats
      description: |-
        Get portfolio stats.

         Get aggregate portfolio statistics for the authenticated user,
         scoped by time period. Includes volume, PnL, fees, equity, and
         win/loss metrics.
      operationId: get_portfolio_stats
      parameters:
      - name: period
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPortfolioStatsResponse'
        '400':
          description: Invalid period parameter
        '401':
          description: Authentication required
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/accounts/me/portfolio/chart:
    get:
      tags:
      - AccountsService
      - Accounts
      summary: Get portfolio chart time series
      description: |-
        Get portfolio chart time series.

         Get bucketed time series data for portfolio charts. Supports volume
         and PnL metrics with configurable time periods and automatic bucket sizing.
      operationId: get_portfolio_chart
      parameters:
      - name: period
        in: query
        schema:
          type: string
      - name: metric
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPortfolioChartResponse'
        '400':
          description: Invalid period or metric parameter
        '401':
          description: Authentication required
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/accounts/movements:
    get:
      tags:
      - AccountsService
      - Accounts
      summary: Get user movements
      description: |-
        Get user movements.

         Get the current user's ledger movements (transaction history) with
         pagination and filtering support.
      operationId: get_user_movements
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 10000
        description: Page number (1-indexed)
      - name: page_size
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 100
          default: 20
        description: Items per page (max 100)
      - name: transaction_type
        in: query
        schema:
          type: string
          enum:
          - DEPOSIT
          - WITHDRAWAL
          - TRADE
          - FEE
          - FUNDING
          - LIQUIDATION
          - INTEREST
          - REWARD
          - CHAIN_SYNC
          minLength: 1
        description: Transaction type
      - name: entry_type
        in: query
        schema:
          type: string
          enum:
          - CREDIT
          - DEBIT
          - LOCK
          - UNLOCK
          - FEE
          minLength: 1
        description: Ledger entry type
      - name: asset_id
        in: query
        schema:
          type: string
          minLength: 1
          format: uuid
        description: Asset identifier (UUID)
      - name: order_by
        in: query
        schema:
          type: string
          default: DESC
          enum:
          - ASC
          - DESC
          minLength: 1
        description: Sort direction for created_at
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMovementsResponse'
        '400':
          description: Invalid request
        '401':
          description: Authentication required
        '404':
          description: User not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/accounts/sub-accounts:
    get:
      tags:
      - AccountsService
      - Accounts
      summary: List sub-accounts with balances
      description: |-
        List sub-accounts with balances.

         List all sub-accounts with their token balances for a master account.
         Only returns sub-accounts that belong to the same application as the
         requesting user.
      operationId: list_sub_accounts_with_balances
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListSubAccountsResponse'
        '400':
          description: Invalid request
        '401':
          description: Authentication required
        '403':
          description: Only master accounts can view sub-accounts
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/accounts/sub-accounts/limits:
    post:
      tags:
      - AccountsService
      - Account Limits
      summary: Create sub-account limit
      description: |-
        Create sub-account limit.

         Create a new limit for a sub-account. Only master accounts can create
         limits for their sub-accounts.
      operationId: create_sub_account_limit
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateLimitRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateLimitResponse'
        '201':
          description: Limit created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateLimitResponse'
        '400':
          description: Invalid request or limit already exists
        '401':
          description: Authentication required
        '403':
          description: Only master accounts can set sub-account limits
        '404':
          description: Sub-account relationship not found or asset not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/accounts/sub-accounts/{sub_account_id}/limits:
    get:
      tags:
      - AccountsService
      - Account Limits
      summary: Get sub-account limits
      description: |-
        Get sub-account limits.

         Get all limits for a sub-account. Users can only view limits for their
         own accounts or their sub-accounts.
      operationId: get_sub_account_limits
      parameters:
      - name: sub_account_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetLimitsResponse'
        '400':
          description: Invalid request
        '401':
          description: Authentication required
        '403':
          description: Only master accounts can view sub-account limits
        '404':
          description: Sub-account not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/accounts/sub-accounts/{sub_account_id}/limits/{asset_id}:
    put:
      tags:
      - AccountsService
      - Account Limits
      summary: Update sub-account limit
      description: |-
        Update sub-account limit.

         Update an existing limit for a sub-account. Only master accounts can
         update limits for their sub-accounts.
      operationId: update_sub_account_limit
      parameters:
      - name: sub_account_id
        in: path
        required: true
        schema:
          type: string
      - name: asset_id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateLimitRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateLimitResponse'
        '400':
          description: Invalid request
        '401':
          description: Authentication required
        '403':
          description: Only master accounts can update sub-account limits
        '404':
          description: Limit not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
    delete:
      tags:
      - AccountsService
      - Account Limits
      summary: Delete sub-account limit
      description: |-
        Delete sub-account limit.

         Delete a limit for a sub-account. Only master accounts can delete limits
         for their sub-accounts.
      operationId: delete_sub_account_limit
      parameters:
      - name: sub_account_id
        in: path
        required: true
        schema:
          type: string
      - name: asset_id
        in: path
        required: true
        schema:
          type: string
      - name: limit_id
        in: query
        schema:
          type: string
          minLength: 1
          format: uuid
        description: Limit identifier (UUID)
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteLimitResponse'
        '400':
          description: Invalid request
        '401':
          description: Authentication required
        '403':
          description: Only master accounts can delete sub-account limits
        '404':
          description: Limit not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/accounts/trades:
    get:
      tags:
      - AccountsService
      - Accounts
      summary: Get user trade history
      description: |-
        Get user trades.

         Get the authenticated user's trade history with pagination.
         Returns trades where the user was either maker or taker, with
         user-specific side and fee information.
      operationId: get_user_trades
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 10000
        description: Page number (1-indexed)
      - name: page_size
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 100
          default: 20
        description: Items per page (max 100)
      - name: trading_pair_id
        in: query
        schema:
          type: string
          minLength: 1
          format: uuid
        description: Trading pair identifier (UUID)
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetUserTradesResponse'
        '400':
          description: Invalid request
        '401':
          description: Authentication required
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/applications/balances:
    get:
      tags:
      - ApplicationsService
      - Applications (Backend)
      summary: List application balances
      description: |-
        List application balances.

         Returns a paginated list of all user balances for this application.
         Requires backend authentication via secret key.
      operationId: list_application_balances
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 10000
        description: Page number (1-indexed)
      - name: page_size
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 100
          default: 20
        description: Items per page (max 100)
      - name: user_id
        in: query
        schema:
          type: string
          minLength: 1
          format: uuid
        description: User identifier (UUID)
      - name: asset_id
        in: query
        schema:
          type: string
          minLength: 1
          format: uuid
        description: Asset identifier (UUID)
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAppBalancesResponse'
        '400':
          description: Bad request
        '401':
          description: Unauthorized - Invalid or missing x-server-key
        '500':
          description: Internal server error
      security:
      - apiKey: []
  /api/v1/applications/config:
    get:
      tags:
      - ApplicationsService
      - Applications
      summary: Get application configuration
      description: |-
        Get application configuration.

         Returns the configuration for the authenticated application including
         allowed origins, webhook URL, and vault contract address.
      operationId: get_application_config
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetConfigResponse'
        '400':
          description: Bad request
        '401':
          description: Unauthorized - Invalid or missing JWT
        '404':
          description: Application not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/applications/movements:
    get:
      tags:
      - ApplicationsService
      - Applications (Backend)
      summary: List application movements
      description: |-
        List application movements.

         Returns a paginated list of all ledger movements (deposits, withdrawals,
         trades, etc.) for this application. Requires backend authentication via
         secret key.
      operationId: list_application_movements
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 10000
        description: Page number (1-indexed)
      - name: page_size
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 100
          default: 20
        description: Items per page (max 100)
      - name: user_id
        in: query
        schema:
          type: string
          minLength: 1
          format: uuid
        description: User identifier (UUID)
      - name: transaction_type
        in: query
        schema:
          type: string
          enum:
          - DEPOSIT
          - WITHDRAWAL
          - TRADE
          - FEE
          - FUNDING
          - LIQUIDATION
          - INTEREST
          - REWARD
          - CHAIN_SYNC
          minLength: 1
        description: Transaction type
      - name: entry_type
        in: query
        schema:
          type: string
          enum:
          - CREDIT
          - DEBIT
          - LOCK
          - UNLOCK
          - FEE
          minLength: 1
        description: Ledger entry type
      - name: asset_id
        in: query
        schema:
          type: string
          minLength: 1
          format: uuid
        description: Asset identifier (UUID)
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAppMovementsResponse'
        '400':
          description: Bad request
        '401':
          description: Unauthorized - Invalid or missing x-server-key
        '500':
          description: Internal server error
      security:
      - apiKey: []
  /api/v1/applications/orders:
    get:
      tags:
      - ApplicationsService
      - Applications (Backend)
      summary: List application orders
      description: |-
        List application orders.

         Returns a paginated list of all orders for this application. Requires
         backend authentication via secret key.
      operationId: list_application_orders
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 10000
        description: Page number (1-indexed)
      - name: page_size
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 100
          default: 20
        description: Items per page (max 100)
      - name: status
        in: query
        schema:
          type: string
          minLength: 1
        description: Order status (single value or comma-separated list)
      - name: user_id
        in: query
        schema:
          type: string
          minLength: 1
          format: uuid
        description: User identifier (UUID)
      - name: trading_pair_id
        in: query
        schema:
          type: string
          minLength: 1
          format: uuid
        description: Trading pair identifier (UUID)
      - name: side
        in: query
        schema:
          type: string
          enum:
          - BUY
          - SELL
          minLength: 1
        description: Order side
      - name: order_type
        in: query
        schema:
          type: string
          enum:
          - LIMIT
          - MARKET
          - STOP_LOSS
          - TAKE_PROFIT
          - STOP_LIMIT
          - TRAILING_STOP
          minLength: 1
        description: Order type
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAppOrdersResponse'
        '400':
          description: Bad request
        '401':
          description: Unauthorized - Invalid or missing x-server-key
        '500':
          description: Internal server error
      security:
      - apiKey: []
  /api/v1/applications/users:
    get:
      tags:
      - ApplicationsService
      - Applications (Backend)
      summary: List application users
      description: |-
        List application users.

         Returns a paginated list of all users for this application. Requires
         backend authentication via secret key.
      operationId: list_application_users
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 10000
        description: Page number (1-indexed)
      - name: page_size
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 100
          default: 20
        description: Items per page (max 100)
      - name: is_active
        in: query
        schema:
          type: boolean
      - name: account_type
        in: query
        schema:
          type: string
          enum:
          - master
          - sub
          minLength: 1
        description: Account type filter
      - name: address
        in: query
        schema:
          type: string
          minLength: 1
        description: Wallet address
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAppUsersResponse'
        '400':
          description: Bad request
        '401':
          description: Unauthorized - Invalid or missing x-server-key
        '500':
          description: Internal server error
      security:
      - apiKey: []
  /api/v1/auth/backend:
    post:
      tags:
      - AuthService
      - Auth
      summary: Backend service authentication
      description: |-
        Backend service authentication.

         Authenticate a backend service using a secret key. Returns a long-lived
         access token for server-to-server API access.
      operationId: authenticate_backend
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BackendAuthRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BackendAuthResponse'
        '400':
          description: Invalid request parameters
        '401':
          description: Invalid secret key or inactive application
        '500':
          description: Internal server error
  /api/v1/auth/challenge:
    post:
      tags:
      - AuthService
      - Auth
      summary: Create authentication challenge
      description: |-
        Create authentication challenge.

         Generate a cryptographic challenge (nonce) for wallet-based authentication.
         The user must sign the returned message with their private key to prove
         ownership of the wallet.
      operationId: create_challenge
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ChallengeRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChallengeResponse'
        '400':
          description: Invalid request parameters
        '403':
          description: Origin not allowed for this application
        '404':
          description: Invalid client_id
        '500':
          description: Internal server error
  /api/v1/auth/refresh:
    post:
      tags:
      - AuthService
      - Auth
      summary: Refresh access token
      description: |-
        Refresh access token.

         Generate a new access token using a valid refresh token. The refresh
         token remains valid for future use.
      operationId: refresh_token
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RefreshRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RefreshResponse'
        '400':
          description: Invalid request parameters
        '401':
          description: Invalid, expired, or revoked refresh token
        '404':
          description: User not found
        '500':
          description: Internal server error
  /api/v1/auth/revoke:
    post:
      tags:
      - AuthService
      - Auth
      summary: Revoke current session
      description: |-
        Revoke current session.

         Revoke the current authenticated session, invalidating the access token.
         The user will need to authenticate again.
      operationId: revoke_session
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RevokeRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RevokeResponse'
        '400':
          description: Request body must be empty
        '401':
          description: Missing or invalid authorization token
        '404':
          description: Session not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/auth/verify:
    post:
      tags:
      - AuthService
      - Auth
      summary: Verify signature and authenticate
      description: |-
        Verify signature and authenticate.

         Verify the signed challenge message and create an authenticated session.
         Returns JWT tokens for subsequent API access.
      operationId: verify_signature
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VerifyRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerifyResponse'
        '400':
          description: Invalid request parameters, nonce expired, or already used
        '401':
          description: Invalid signature
        '403':
          description: Origin not allowed for this application
        '404':
          description: Invalid nonce or client_id
        '500':
          description: Internal server error
  /api/v1/faucet/mint:
    post:
      tags:
      - FaucetService
      - Faucet
      summary: Mint all testnet tokens
      description: |-
        Mint all testnet tokens.

         Mint all available testnet tokens to the authenticated user's address.
         Rate limited per 24 hours.
      operationId: mint_tokens
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MintTokensResponse'
        '400':
          description: Invalid request
        '401':
          description: Authentication required
        '429':
          description: Rate limit exceeded
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/fees/simulate:
    get:
      tags:
      - FeesService
      - Fees
      summary: Simulate fees for a potential order
      description: |-
        Simulate fees for a potential order.

         Returns exact fee breakdown for a specific order before placing it,
         including Monaco protocol fees, application fees, total amounts,
         and the maximum quantity affordable at the given price.
      operationId: simulate_fees
      parameters:
      - name: trading_pair_id
        in: query
        schema:
          type: string
          minLength: 1
          format: uuid
        description: Trading pair identifier (UUID)
        required: true
      - name: side
        in: query
        schema:
          type: string
          enum:
          - BUY
          - SELL
          minLength: 1
        description: Order side
        required: true
      - name: price
        in: query
        schema:
          type: string
          minLength: 1
        description: Price as decimal string
        required: true
      - name: quantity
        in: query
        schema:
          type: string
          minLength: 1
        description: Quantity as decimal string
        required: true
      - name: order_type
        in: query
        schema:
          type: string
          enum:
          - LIMIT
          - MARKET
          - STOP_LOSS
          - TAKE_PROFIT
          - STOP_LIMIT
          - TRAILING_STOP
          minLength: 1
        description: Order type
      - name: slippage_tolerance_bps
        in: query
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SimulateFeesResponse'
        '400':
          description: Bad request (e.g., slippage with LIMIT order)
        '401':
          description: Authentication required
        '404':
          description: Trading pair or application not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/market/pairs:
    get:
      tags:
      - MarketService
      - Market
      summary: Trading Pairs
      description: |-
        Trading Pairs

         Get paginated list of trading pairs with optional filtering by market
         type, base token, quote token, and active status.
      operationId: list_trading_pairs
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 10000
        description: Page number (1-indexed)
      - name: page_size
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 100
          default: 20
        description: Items per page (max 100)
      - name: market_type
        in: query
        schema:
          type: string
          enum:
          - SPOT
          - MARGIN
          minLength: 1
        description: Filter by market type
      - name: base_token
        in: query
        schema:
          type: string
      - name: quote_token
        in: query
        schema:
          type: string
      - name: is_active
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListTradingPairsResponse'
        '400':
          description: Invalid market type parameter
        '500':
          description: Internal server error
  /api/v1/market/pairs/charts/candlestick/{trading_pair_id}/{interval}:
    get:
      tags:
      - MarketService
      - Market
      summary: Candlestick Data
      description: |-
        Candlestick Data

         Get OHLCV (Open, High, Low, Close, Volume) candlestick data for a
         trading pair with configurable interval and time range.
      operationId: get_candles
      parameters:
      - name: trading_pair_id
        in: path
        required: true
        schema:
          type: string
      - name: interval
        in: path
        required: true
        schema:
          type: string
      - name: start_time
        in: query
        schema:
          type: integer
          minimum: 0
          maximum: 4102444800000
          format: int64
        description: Start time as Unix timestamp (milliseconds)
      - name: end_time
        in: query
        schema:
          type: integer
          minimum: 0
          maximum: 4102444800000
          format: int64
        description: End time as Unix timestamp (milliseconds)
      - name: limit
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 1000
          default: 100
        description: Max candles to return (max 1000)
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCandlesResponse'
        '400':
          description: Invalid parameters
        '404':
          description: Trading pair not found or inactive
        '500':
          description: Internal server error
  /api/v1/market/pairs/{trading_pair_id}:
    get:
      tags:
      - MarketService
      - Market
      summary: Trading Pair By ID
      description: |-
        Trading Pair By ID

         Get a specific trading pair by its UUID.
      operationId: get_trading_pair_by_id
      parameters:
      - name: trading_pair_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetTradingPairResponse'
        '404':
          description: Trading pair not found
        '500':
          description: Internal server error
  /api/v1/market/pairs/{trading_pair_id}/metadata:
    get:
      tags:
      - MarketService
      - Market
      summary: Market Metadata
      description: |-
        Market Metadata

         Returns current price (from latest candle), 24h statistics (high, low,
         volume, change), and market initialization timestamp. 24h fields will
         be null if less than 24 hours of data available.
      operationId: get_market_metadata
      parameters:
      - name: trading_pair_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMarketMetadataResponse'
        '404':
          description: Trading pair not found
        '500':
          description: Internal server error
  /api/v1/orderbook/{trading_pair_id}:
    get:
      tags:
      - OrderbookService
      - Orderbook
      summary: Orderbook Snapshot
      description: |-
        Orderbook Snapshot

         Get the complete orderbook snapshot for a trading pair showing all bids
         and asks with their price levels. This is a public endpoint that does
         not require authentication.
      operationId: get_orderbook_snapshot
      parameters:
      - name: trading_pair_id
        in: path
        required: true
        schema:
          type: string
      - name: levels
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 100
          default: 20
        description: Number of price levels (max 100)
      - name: trading_mode
        in: query
        schema:
          type: string
          enum:
          - SPOT
          - MARGIN
          minLength: 1
        description: Trading mode
      - name: magnitude
        in: query
        schema:
          type: string
          enum:
          - '0.0001'
          - '0.001'
          - '0.01'
          - '0.1'
          - '1'
          - '10'
          - '100'
          - '1000'
          - '10000'
          minLength: 1
        description: Price grouping magnitude
      - name: denomination
        in: query
        schema:
          type: string
          enum:
          - base
          - quote
          minLength: 1
        description: Price denomination
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOrderbookResponse'
        '400':
          description: Invalid magnitude or denomination value
        '404':
          description: Trading pair not found
        '500':
          description: Matching engine not initialized or internal error
  /api/v1/orders:
    get:
      tags:
      - OrdersService
      - Orders
      summary: Get user orders
      description: |-
        Get user orders.

         Get orders for the authenticated user with pagination and optional
         filtering by status and trading pair.
      operationId: get_orders
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 10000
        description: Page number (1-indexed)
      - name: page_size
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 100
          default: 20
        description: Items per page (max 100)
      - name: status
        in: query
        schema:
          type: string
          minLength: 1
        description: Order status (single value or comma-separated list)
      - name: trading_pair_id
        in: query
        schema:
          type: string
          minLength: 1
          format: uuid
        description: Trading pair identifier (UUID)
      - name: order_by
        in: query
        schema:
          type: string
          default: DESC
          enum:
          - ASC
          - DESC
          minLength: 1
        description: Sort direction for created_at
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListOrdersResponse'
        '400':
          description: Invalid query parameters
        '401':
          description: Authentication required
        '403':
          description: User does not belong to application
        '404':
          description: User not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
    post:
      tags:
      - OrdersService
      - Orders
      summary: Create new order
      description: |-
        Create new order.

         Create a new order and process it through the matching engine. The order
         will be matched against existing orders in the orderbook.
      operationId: create_order
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateOrderRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateOrderResponse'
        '400':
          description: Invalid order parameters or insufficient balance
        '401':
          description: Authentication required
        '500':
          description: Internal server error or matching engine failure
      security:
      - bearerAuth: []
  /api/v1/orders/batch-cancel:
    post:
      tags:
      - OrdersService
      - Orders
      summary: Batch cancel specific orders
      description: |-
        Batch cancel specific orders.

         Cancel multiple specific orders by their IDs. For canceling all orders,
         use /batch-cancel-all or /batch-cancel-all/{trading_pair_id}.
      operationId: batch_cancel_orders
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchCancelOrdersRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchCancelOrdersResponse'
        '400':
          description: Invalid request - order_ids is required
        '401':
          description: Authentication required
        '500':
          description: Internal server error or matching engine failure
      security:
      - bearerAuth: []
  /api/v1/orders/batch-cancel-all:
    post:
      tags:
      - OrdersService
      - Orders
      summary: Cancel all orders
      description: |-
        Cancel all orders.

         Cancel all active orders for the authenticated user. To cancel orders
         for a specific trading pair, use /batch-cancel-all/{trading_pair_id}.
      operationId: batch_cancel_all
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchCancelAllResponse'
        '401':
          description: Authentication required
        '500':
          description: Internal server error or matching engine failure
      security:
      - bearerAuth: []
  /api/v1/orders/batch-cancel-all/{trading_pair_id}:
    post:
      tags:
      - OrdersService
      - Orders
      summary: Cancel all orders for a trading pair
      description: |-
        Cancel all orders for a trading pair.

         Cancel all active orders for the authenticated user on a specific
         trading pair.
      operationId: batch_cancel_all_by_pair
      parameters:
      - name: trading_pair_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchCancelAllResponse'
        '400':
          description: Invalid trading pair ID
        '401':
          description: Authentication required
        '500':
          description: Internal server error or matching engine failure
      security:
      - bearerAuth: []
  /api/v1/orders/batch-create:
    post:
      tags:
      - OrdersService
      - Orders
      summary: Batch create orders
      description: |-
        Batch create orders.

         Create multiple orders in a single batch. Each order is processed
         sequentially through the matching engine.
      operationId: batch_create_orders
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchCreateOrdersRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchCreateOrdersResponse'
        '400':
          description: Invalid request
        '401':
          description: Authentication required
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/orders/batch-replace:
    post:
      tags:
      - OrdersService
      - Orders
      summary: Batch replace orders
      description: |-
        Batch replace orders.

         Replace multiple orders in a single batch. Each order is processed
         sequentially through the matching engine.
      operationId: batch_replace_orders
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchReplaceOrdersRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchReplaceOrdersResponse'
        '400':
          description: Invalid request
        '401':
          description: Authentication required
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/orders/cancel:
    post:
      tags:
      - OrdersService
      - Orders
      summary: Cancel existing order
      description: |-
        Cancel existing order.

         Cancel an existing order and unlock the reserved funds. Only orders that
         are not yet filled can be cancelled.
      operationId: cancel_order
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CancelOrderRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CancelOrderResponse'
        '400':
          description: Invalid order ID or order already filled/cancelled
        '401':
          description: Authentication required or order doesn't belong to user
        '404':
          description: Order not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/orders/{order_id}:
    get:
      tags:
      - OrdersService
      - Orders
      summary: Get order by ID
      description: |-
        Get order by ID.

         Get a single order by its ID. Users can only access their own orders.
      operationId: get_order_by_id
      parameters:
      - name: order_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOrderResponse'
        '400':
          description: Invalid order ID format
        '401':
          description: Authentication required
        '403':
          description: User does not have permission to view this order
        '404':
          description: Order not found or user not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
    put:
      tags:
      - OrdersService
      - Orders
      summary: Replace existing order
      description: |-
        Replace existing order.

         Replaces an existing order with new parameters by canceling the original
         order and creating a new one with the updated price/quantity. Priority is
         lost in the order book.
      operationId: replace_order
      parameters:
      - name: order_id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReplaceOrderRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReplaceOrderResponse'
        '400':
          description: Invalid order ID, order cannot be replaced, or insufficient balance
        '401':
          description: Authentication required or order doesn't belong to user
        '404':
          description: Order not found
        '500':
          description: Internal server error
      security:
      - bearerAuth: []
  /api/v1/trades/by-id/{trade_id}:
    get:
      tags:
      - TradesService
      - Trades
      summary: Get Trade by ID
      description: |-
        Get Trade by ID

         Retrieve a single trade by its unique identifier.
      operationId: get_trade_by_id
      parameters:
      - name: trade_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetTradeByIdResponse'
        '400':
          description: Invalid trade ID
        '404':
          description: Trade not found
        '500':
          description: Internal server error
  /api/v1/trades/{trading_pair_id}:
    get:
      tags:
      - TradesService
      - Trades
      summary: Recent Trades
      description: |-
        Recent Trades

         Get recent trades for a trading pair sorted by execution time.
      operationId: get_trades
      parameters:
      - name: trading_pair_id
        in: path
        required: true
        schema:
          type: string
      - name: page
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 10000
        description: Page number (1-indexed)
      - name: page_size
        in: query
        schema:
          type: integer
          format: uint32
          minimum: 1
          maximum: 100
          default: 25
        description: Max trades to return (max 100)
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetTradesResponse'
        '400':
          description: Invalid trading pair ID
        '404':
          description: Trading pair not found
        '500':
          description: Internal server error
  /api/v1/whitelist:
    post:
      tags:
      - WhitelistService
      - Whitelist
      summary: Submit whitelist application
      description: |-
        Submit whitelist application.

         Submit a whitelist application to join Monaco Protocol. The user will be
         created with is_active = false and will need to be approved by an admin.
      operationId: submit_whitelist
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmitWhitelistRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubmitWhitelistResponse'
        '400':
          description: Invalid request parameters
        '409':
          description: Wallet address or email already registered
        '500':
          description: Internal server error
  /health:
    get:
      tags:
      - HealthService
      - Health
      summary: Health check
      description: |-
        Health check.

         Returns the current health status of the API gateway and its connected
         services. Can be used for monitoring and load balancer health checks.
      operationId: health_check
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicHealthCheckResponse'
        '503':
          description: Service is unhealthy
components:
  schemas:
    AccountBalance:
      type: object
      properties:
        token:
          nullable: true
          type: string
          description: Token contract address
        symbol:
          example: USDC
          type: string
          description: Token symbol
          nullable: true
        decimals:
          example: 6
          type: integer
          description: Token decimal places
          format: int32
          nullable: true
        available_balance:
          example: '1000.50'
          type: string
          description: Available (unlocked) balance in token units
          nullable: true
        locked_balance:
          example: '50.25'
          type: string
          description: Balance locked in open orders
          nullable: true
        total_balance:
          example: '1050.75'
          type: string
          description: Total balance (available + locked)
          nullable: true
        available_balance_raw:
          example: '1000500000'
          type: string
          description: Raw available balance in smallest token unit
          nullable: true
        locked_balance_raw:
          example: '50250000'
          type: string
          description: Raw locked balance in smallest token unit
          nullable: true
        asset_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Asset UUID
          format: uuid
          nullable: true
    AppUser:
      type: object
      properties:
        id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: User UUID
          format: uuid
          nullable: true
        address:
          maxLength: 42
          type: string
          description: Wallet address
          nullable: true
          pattern: ^0x[0-9a-fA-F]{40}$
          minLength: 42
        username:
          example: trader123
          type: string
          description: Display username
          nullable: true
        account_type:
          example: master
          type: string
          description: 'Account type: master or sub'
          nullable: true
        can_withdraw:
          example: true
          type: boolean
          description: Whether the user is allowed to withdraw
          nullable: true
        created_at:
          example: 2023-11-13T10:30:00Z
          type: string
          description: Account creation timestamp (ISO 8601)
          nullable: true
        email:
          type: string
          description: Email address
          nullable: true
        is_active:
          example: true
          type: boolean
          description: Whether the user account is active
          nullable: true
        is_banned:
          example: false
          type: boolean
          description: Whether the user is banned
          nullable: true
        master_account_id:
          type: string
          description: Master account ID (for sub-accounts)
          format: uuid
          nullable: true
        updated_at:
          example: 2023-11-13T10:35:00Z
          type: string
          description: Last update timestamp (ISO 8601)
          nullable: true
    ApplicationBalance:
      type: object
      properties:
        available_balance:
          type: string
          description: Available balance for trading
          nullable: true
        created_at:
          type: string
          description: Balance creation timestamp (ISO 8601)
          nullable: true
        decimals:
          type: integer
          description: Token decimals
          format: int32
          nullable: true
        id:
          type: string
          description: Balance UUID
          format: uuid
          nullable: true
        last_sync_at:
          type: string
          description: Last sync timestamp (ISO 8601)
          nullable: true
        last_sync_block:
          type: string
          description: Last sync block number
          nullable: true
        locked_balance:
          type: string
          description: Locked balance
          nullable: true
        margin_locked:
          type: string
          description: Margin locked balance
          nullable: true
        on_chain_balance:
          type: string
          description: On-chain balance
          nullable: true
        symbol:
          type: string
          description: Token symbol
          nullable: true
        token:
          type: string
          description: Token address
          nullable: true
        total_balance:
          type: string
          description: Total balance
          nullable: true
        updated_at:
          type: string
          description: Balance last update timestamp (ISO 8601)
          nullable: true
        user_id:
          type: string
          description: User UUID who owns this balance
          format: uuid
          nullable: true
    ApplicationMovement:
      type: object
      properties:
        amount:
          type: string
          description: Transaction amount
          nullable: true
        balance_after:
          type: string
          description: Balance after this transaction
          nullable: true
        balance_before:
          type: string
          description: Balance before this transaction
          nullable: true
        balance_id:
          type: string
          description: Balance UUID this movement affects
          format: uuid
          nullable: true
        block_number:
          type: string
          description: Blockchain block number
          nullable: true
        created_at:
          type: string
          description: Transaction timestamp (ISO 8601)
          nullable: true
        description:
          type: string
          description: Human readable description
          nullable: true
        entry_type:
          type: string
          description: Type of ledger entry
          nullable: true
        id:
          type: string
          description: Movement UUID
          format: uuid
          nullable: true
        locked_after:
          type: string
          description: Locked balance after transaction
          nullable: true
        locked_before:
          type: string
          description: Locked balance before transaction
          nullable: true
        reference_id:
          type: string
          description: Reference identifier for related operations
          format: uuid
          nullable: true
        reference_type:
          type: string
          description: Reference type
          nullable: true
        token:
          type: string
          description: Token address
          nullable: true
        transaction_type:
          type: string
          description: Type of transaction
          nullable: true
        tx_hash:
          type: string
          description: Blockchain transaction hash
          nullable: true
        user_id:
          type: string
          description: User UUID who owns this movement
          format: uuid
          nullable: true
    ApplicationOrder:
      type: object
      properties:
        id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Order UUID
          format: uuid
          nullable: true
        user_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: User UUID who placed the order
          format: uuid
          nullable: true
        trading_pair_id:
          example: 456e7890-e12b-12d3-a456-426614174000
          type: string
          description: Trading pair UUID
          format: uuid
          nullable: true
        order_type:
          example: LIMIT
          type: string
          description: 'Order type: LIMIT, MARKET, STOP_LOSS, TAKE_PROFIT, STOP_LIMIT, or TRAILING_STOP'
          nullable: true
        side:
          example: BUY
          type: string
          description: 'Order side: BUY or SELL'
          nullable: true
        price:
          example: '35000.00'
          type: string
          description: Order price (null for market orders)
          nullable: true
        quantity:
          example: '0.5'
          type: string
          description: Order quantity (normalized for display)
          nullable: true
        quantity_raw:
          example: '500000000'
          type: string
          description: Order quantity in raw format (for precision)
          nullable: true
        filled_quantity:
          example: '0.2'
          type: string
          description: Filled quantity (normalized for display)
          nullable: true
        filled_quantity_raw:
          example: '200000000'
          type: string
          description: Filled quantity in raw format
          nullable: true
        average_fill_price:
          example: '35050.00'
          type: string
          description: Volume-weighted average fill price
          nullable: true
        status:
          example: SUBMITTED
          type: string
          description: Order status
          nullable: true
        trading_mode:
          example: SPOT
          type: string
          description: 'Trading mode: SPOT or MARGIN'
          nullable: true
        time_in_force:
          example: GTC
          type: string
          description: 'Time in force: GTC, IOC, or FOK'
          nullable: true
        created_at:
          example: 2023-11-13T10:30:00Z
          type: string
          description: Order creation timestamp (ISO 8601)
          nullable: true
        updated_at:
          example: 2023-11-13T10:35:00Z
          type: string
          description: Order last update timestamp (ISO 8601)
          nullable: true
    BackendAuthRequest:
      required:
      - secret_key
      type: object
      properties:
        secret_key:
          example: sk_live_abc123def456
          type: string
          description: Backend secret key (sk_xxx)
      additionalProperties: false
    BackendAuthResponse:
      type: object
      properties:
        app_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Application UUID
          nullable: true
        client_id:
          example: monaco-frontend
          type: string
          description: Application client identifier
          nullable: true
        name:
          example: Monaco Trading Frontend
          type: string
          description: Application display name
          nullable: true
    BatchCancelAllResponse:
      type: object
      properties:
        total_requested:
          example: 10
          type: integer
          description: Number of orders requested to cancel
          format: int32
          nullable: true
        total_cancelled:
          example: 10
          type: integer
          description: Number of orders successfully cancelled
          format: int32
          nullable: true
        total_failed:
          example: 0
          type: integer
          description: Number of cancellations that failed
          format: int32
          nullable: true
        results:
          type: array
          items:
            $ref: '#/components/schemas/BatchCancelResult'
          nullable: true
    BatchCancelError:
      type: object
      properties:
        code:
          example: ORDER_ALREADY_FILLED
          type: string
          description: Machine-readable error code
          nullable: true
        message:
          example: Order has already been fully filled
          type: string
          description: Human-readable error message
          nullable: true
    BatchCancelOrdersRequest:
      required:
      - order_ids
      type: object
      properties:
        order_ids:
          minItems: 1
          type: array
          items:
            type: string
            minLength: 1
            format: uuid
          description: List of order UUIDs to cancel
      additionalProperties: false
    BatchCancelOrdersResponse:
      type: object
      properties:
        total_requested:
          example: 5
          type: integer
          description: Number of orders requested to cancel
          format: int32
          nullable: true
        total_cancelled:
          example: 4
          type: integer
          description: Number of orders successfully cancelled
          format: int32
          nullable: true
        total_failed:
          example: 1
          type: integer
          description: Number of cancellations that failed
          format: int32
          nullable: true
        results:
          type: array
          items:
            $ref: '#/components/schemas/BatchCancelResult'
          nullable: true
    BatchCancelResult:
      type: object
      properties:
        order_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Order UUID
          format: uuid
          nullable: true
        cancelled_at:
          example: 2023-11-13T10:35:00Z
          type: string
          description: Cancellation timestamp (ISO 8601). Present on success; absent when `error` is set.
          nullable: true
        error:
          $ref: '#/components/schemas/BatchCancelError'
    BatchCreateError:
      type: object
      properties:
        code:
          example: INSUFFICIENT_BALANCE
          type: string
          description: Machine-readable error code
          nullable: true
        message:
          example: Insufficient balance to place order
          type: string
          description: Human-readable error message
          nullable: true
    BatchCreateOrderItem:
      required:
      - trading_pair_id
      - order_type
      - side
      - quantity
      type: object
      properties:
        trading_pair_id:
          example: 456e7890-e12b-12d3-a456-426614174000
          type: string
          description: Trading pair UUID
          format: uuid
        order_type:
          example: LIMIT
          type: string
          description: 'Order type: LIMIT or MARKET'
        side:
          example: BUY
          type: string
          description: 'Order side: BUY or SELL'
        price:
          example: '35000.00'
          type: string
          description: Limit price as decimal string (required for LIMIT orders)
          nullable: true
        quantity:
          example: '0.5'
          type: string
          description: Order quantity as decimal string
        trading_mode:
          example: SPOT
          type: string
          description: 'Trading mode: SPOT or MARGIN (default: SPOT)'
          nullable: true
        slippage_tolerance_bps:
          example: 50
          maximum: 10000
          type: integer
          description: Maximum slippage tolerance in basis points (market orders only)
          format: int32
          nullable: true
        use_master_balance:
          example: false
          type: boolean
          description: Use master account balance for sub-account orders
          nullable: true
        expiration_date:
          example: 2026-06-01T00:00:00Z
          type: string
          description: Order expiration date (ISO 8601, must be in the future)
          nullable: true
        time_in_force:
          example: GTC
          type: string
          description: 'Time in force: GTC, IOC, or FOK'
          nullable: true
      additionalProperties: false
    BatchCreateOrdersRequest:
      required:
      - orders
      type: object
      properties:
        orders:
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/BatchCreateOrderItem'
      additionalProperties: false
    BatchCreateOrdersResponse:
      type: object
      properties:
        total_requested:
          example: 5
          type: integer
          description: Number of orders requested to create
          format: int32
          nullable: true
        total_succeeded:
          example: 4
          type: integer
          description: Number of orders successfully created
          format: int32
          nullable: true
        total_failed:
          example: 1
          type: integer
          description: Number of creations that failed
          format: int32
          nullable: true
        results:
          type: array
          items:
            $ref: '#/components/schemas/BatchCreateResult'
          nullable: true
    BatchCreateResult:
      type: object
      properties:
        order_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Created order UUID
          format: uuid
          nullable: true
        match_result:
          $ref: '#/components/schemas/MatchResult'
        error:
          $ref: '#/components/schemas/BatchCreateError'
    BatchReplaceError:
      type: object
      properties:
        code:
          example: ORDER_NOT_FOUND
          type: string
          description: Machine-readable error code
          nullable: true
        message:
          example: Order not found or already filled
          type: string
          description: Human-readable error message
          nullable: true
    BatchReplaceOrderItem:
      required:
      - order_id
      type: object
      properties:
        order_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Order UUID to replace
          format: uuid
        price:
          example: '35500.00'
          type: string
          description: New limit price (if changing)
          nullable: true
        quantity:
          example: '0.7'
          type: string
          description: New quantity (if changing)
          nullable: true
        use_master_balance:
          example: false
          type: boolean
          description: Use master account balance for sub-account orders
          nullable: true
      additionalProperties: false
    BatchReplaceOrdersRequest:
      required:
      - orders
      type: object
      properties:
        orders:
          minItems: 1
          type: array
          items:
            $ref: '#/components/schemas/BatchReplaceOrderItem'
      additionalProperties: false
    BatchReplaceOrdersResponse:
      type: object
      properties:
        total_requested:
          example: 3
          type: integer
          description: Number of orders requested to replace
          format: int32
          nullable: true
        total_succeeded:
          example: 3
          type: integer
          description: Number of orders successfully replaced
          format: int32
          nullable: true
        total_failed:
          example: 0
          type: integer
          description: Number of replacements that failed
          format: int32
          nullable: true
        results:
          type: array
          items:
            $ref: '#/components/schemas/BatchReplaceResult'
          nullable: true
    BatchReplaceResult:
      type: object
      properties:
        original_order_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Original order UUID that was replaced
          format: uuid
          nullable: true
        new_order_id:
          example: 987e6543-e21b-12d3-a456-426614174000
          type: string
          description: New replacement order UUID (if successful)
          format: uuid
          nullable: true
        updated_fields:
          $ref: '#/components/schemas/UpdatedFields'
        match_result:
          $ref: '#/components/schemas/MatchResult'
        error:
          $ref: '#/components/schemas/BatchReplaceError'
    CancelOrderRequest:
      required:
      - order_id
      type: object
      properties:
        order_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Order UUID to cancel
          format: uuid
      additionalProperties: false
    CancelOrderResponse:
      type: object
      properties:
        order_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Cancelled order UUID
          format: uuid
          nullable: true
        status:
          example: SUCCESS
          type: string
          description: 'Result status: SUCCESS or FAILED'
          nullable: true
        message:
          example: Order cancelled successfully
          type: string
          description: Human-readable status message
          nullable: true
    Candle:
      type: object
      properties:
        timestamp:
          nullable: true
          type: string
          description: Unix timestamp for the start of the candle period in milliseconds
        open:
          example: '35000.00'
          type: string
          description: Opening price
          nullable: true
        high:
          example: '35500.00'
          type: string
          description: Highest price during the period
          nullable: true
        low:
          example: '34800.00'
          type: string
          description: Lowest price during the period
          nullable: true
        close:
          example: '35200.00'
          type: string
          description: Closing price
          nullable: true
        volume:
          example: '125.5'
          type: string
          description: Base token volume traded during the period
          nullable: true
        quote_volume:
          example: '4412600.00'
          type: string
          description: Quote token volume traded during the period
          nullable: true
        trade_count:
          example: 342
          type: integer
          description: Number of trades during the period
          format: uint32
          nullable: true
        close_timestamp_ms:
          nullable: true
          type: string
          description: Unix timestamp for the end of the candle period in milliseconds
    ChallengeRequest:
      required:
      - address
      type: object
      properties:
        address:
          description: Ethereum wallet address
          maxLength: 42
          minLength: 42
          pattern: ^0x[0-9a-fA-F]{40}$
          type: string
        client_id:
          example: monaco-frontend
          type: string
          description: Optional application identifier
          nullable: true
        chain_id:
          nullable: true
          type: string
          description: Optional chain ID supplied by SDK clients
      additionalProperties: false
    ChallengeResponse:
      type: object
      properties:
        nonce:
          example: abc123def456
          type: string
          description: Unique challenge nonce
          nullable: true
        message:
          example: Sign this message to authenticate with Monaco Protocol...
          type: string
          description: Message to sign
          nullable: true
        expires_at:
          example: 1699876543
          type: integer
          description: Unix timestamp when challenge expires
          format: int32
          nullable: true
    ChartDataPoint:
      type: object
      properties:
        timestamp:
          example: 2026-02-18T00:00:00Z
          type: string
          description: Bucket timestamp (ISO 8601)
          nullable: true
        value:
          example: '-0.002'
          type: string
          description: Metric value for this bucket
          nullable: true
    CreateLimitRequest:
      required:
      - sub_account_id
      - asset_id
      - max_amount
      type: object
      properties:
        sub_account_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Sub-account UUID to create the limit for
          format: uuid
        asset_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Asset UUID to limit
          format: uuid
        max_amount:
          example: '1000.00'
          minLength: 1
          pattern: ^-?[0-9]{1,28}(\.[0-9]{1,18})?$
          type: string
          description: Maximum amount allowed in token units
        daily_limit:
          example: '500.00'
          minLength: 1
          pattern: ^-?[0-9]{1,28}(\.[0-9]{1,18})?$
          type: string
          description: Maximum daily spending limit in token units
          nullable: true
      additionalProperties: false
    CreateLimitResponse:
      type: object
      properties:
        limit:
          $ref: '#/components/schemas/SubAccountLimit'
    CreateOrderRequest:
      required:
      - trading_pair_id
      - order_type
      - side
      - quantity
      type: object
      properties:
        trading_pair_id:
          example: afae0e16-2d05-4ee9-9ee8-afae0e162d05
          type: string
          description: Trading pair UUID
          format: uuid
        order_type:
          example: LIMIT
          type: string
          description: 'Order type: LIMIT or MARKET'
        side:
          example: BUY
          type: string
          description: 'Order side: BUY or SELL'
        price:
          example: '35000.00'
          type: string
          description: Limit price as decimal string (required for LIMIT orders)
          nullable: true
        quantity:
          example: '0.5'
          type: string
          description: Order quantity as decimal string
        trading_mode:
          example: SPOT
          type: string
          description: 'Trading mode: SPOT or MARGIN (default: SPOT)'
          nullable: true
        slippage_tolerance_bps:
          example: 50
          maximum: 10000
          type: integer
          description: Maximum slippage tolerance in basis points (market orders only)
          format: int32
          nullable: true
        use_master_balance:
          example: false
          type: boolean
          description: Use master account balance for sub-account orders
          nullable: true
        expiration_date:
          example: 2026-06-01T00:00:00Z
          type: string
          description: Order expiration date (ISO 8601, must be in the future)
          nullable: true
        time_in_force:
          example: GTC
          type: string
          description: 'Time in force: GTC, IOC, or FOK'
          nullable: true
      additionalProperties: false
    CreateOrderResponse:
      type: object
      properties:
        order_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Created order UUID
          format: uuid
          nullable: true
        status:
          example: SUCCESS
          type: string
          description: 'Result status: SUCCESS or FAILED'
          nullable: true
        message:
          example: Order created successfully
          type: string
          description: Human-readable status message
          nullable: true
        match_result:
          $ref: '#/components/schemas/MatchResult'
    DeleteLimitResponse:
      type: object
      properties:
        message:
          example: Limit deleted successfully
          type: string
          description: Human-readable status message
          nullable: true
    ExecutionPriceRange:
      type: object
      properties:
        best_price:
          example: '2045.00'
          type: string
          description: Best execution price achieved
          nullable: true
        worst_price:
          example: '2052.00'
          type: string
          description: Worst execution price in the fill
          nullable: true
    FailedMint:
      type: object
      properties:
        asset_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Asset UUID
          nullable: true
          format: uuid
        symbol:
          example: WBTC
          type: string
          description: Token symbol
          nullable: true
        error:
          example: Mint transaction failed
          type: string
          description: Error message describing why the mint failed
          nullable: true
    GetBalanceByAssetResponse:
      type: object
      properties:
        token:
          nullable: true
          type: string
          description: Token contract address
        symbol:
          example: USDC
          type: string
          description: Token symbol
          nullable: true
        decimals:
          example: 6
          type: integer
          description: Token decimal places
          format: int32
          nullable: true
        available_balance:
          example: '1000.50'
          type: string
          description: Available (unlocked) balance in token units
          nullable: true
        locked_balance:
          example: '50.25'
          type: string
          description: Balance locked in open orders
          nullable: true
        total_balance:
          example: '1050.75'
          type: string
          description: Total balance (available + locked)
          nullable: true
        available_balance_raw:
          example: '1000500000'
          type: string
          description: Raw available balance in smallest token unit
          nullable: true
        locked_balance_raw:
          example: '50250000'
          type: string
          description: Raw locked balance in smallest token unit
          nullable: true
        asset_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Asset UUID
          format: uuid
          nullable: true
    GetBalancesResponse:
      type: object
      properties:
        balances:
          type: array
          items:
            $ref: '#/components/schemas/AccountBalance'
          nullable: true
        total:
          example: 5
          type: integer
          description: Total number of balances
          format: uint32
          nullable: true
        page:
          example: 1
          type: integer
          description: Current page number
          format: uint32
          nullable: true
        page_size:
          example: 20
          type: integer
          description: Items per page
          format: uint32
          nullable: true
        total_pages:
          example: 1
          type: integer
          description: Total number of pages
          format: uint32
          nullable: true
    GetCandlesResponse:
      type: object
      properties:
        candles:
          type: array
          items:
            $ref: '#/components/schemas/Candle'
          nullable: true
      description: OHLCV candlestick data.
    GetConfigResponse:
      type: object
      properties:
        id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Application UUID
          nullable: true
        name:
          example: Monaco
          type: string
          description: Application display name
          nullable: true
        allowed_origins:
          type: array
          items:
            type: string
            minLength: 1
          description: List of allowed origins for CORS
          nullable: true
        webhook_url:
          type: string
          description: Webhook URL for notifications
          nullable: true
        vault_contract_address:
          nullable: true
          type: string
          description: Vault contract address for this application
        client_id:
          example: 6fe0da813f1a4adcbe675d52ca530a43
          type: string
          description: Application client ID, embedded in on-chain deposit calls
          nullable: true
    GetLimitsResponse:
      type: object
      properties:
        limits:
          type: array
          items:
            $ref: '#/components/schemas/SubAccountLimit'
          nullable: true
    GetMarketMetadataResponse:
      type: object
      properties:
        base_icon_url:
          example: https://assets.0xmonaco.com/icons/btc.svg
          type: string
          description: URL for the base token icon
          nullable: true
        high_24h:
          example: '96500.00'
          type: string
          description: Highest price in the last 24 hours
          nullable: true
        last_price:
          example: '95432.50'
          type: string
          description: Most recent trade price
          nullable: true
        last_price_timestamp:
          example: '1736742000000'
          type: string
          description: Timestamp of the last trade (ms since epoch)
          nullable: true
        low_24h:
          example: '94200.00'
          type: string
          description: Lowest price in the last 24 hours
          nullable: true
        market_initialization_timestamp:
          example: '1735000000000'
          type: string
          description: When this market was first initialized (ms since epoch)
          nullable: true
        price_change_24h:
          example: '1232.50'
          type: string
          description: Absolute price change in the last 24 hours
          nullable: true
        price_change_percent_24h:
          example: '1.31'
          type: string
          description: Percentage price change in the last 24 hours
          nullable: true
        quote_icon_url:
          example: https://assets.0xmonaco.com/icons/usdc.svg
          type: string
          description: URL for the quote token icon
          nullable: true
        symbol:
          example: BTC/USDC
          type: string
          description: Trading pair symbol
          nullable: true
        volume_24h:
          example: '1234.5678'
          type: string
          description: Base token volume in the last 24 hours
          nullable: true
      description: Market metadata with current price and 24h statistics.
    GetMovementsResponse:
      type: object
      properties:
        movements:
          type: array
          items:
            $ref: '#/components/schemas/LedgerMovement'
          nullable: true
        total:
          example: 150
          type: integer
          description: Total number of movements
          format: uint32
          nullable: true
        page:
          example: 1
          type: integer
          description: Current page number
          format: uint32
          nullable: true
        page_size:
          example: 20
          type: integer
          description: Items per page
          format: uint32
          nullable: true
        total_pages:
          example: 8
          type: integer
          description: Total number of pages
          format: uint32
          nullable: true
    GetOrderResponse:
      type: object
      properties:
        id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Order UUID
          format: uuid
          nullable: true
        trading_pair_id:
          example: 456e7890-e12b-12d3-a456-426614174000
          type: string
          description: Trading pair UUID
          format: uuid
          nullable: true
        order_type:
          example: LIMIT
          type: string
          description: 'Order type: LIMIT or MARKET'
          nullable: true
        side:
          example: BUY
          type: string
          description: 'Order side: BUY or SELL'
          nullable: true
        price:
          example: '35000.00'
          type: string
          description: Limit price (null for market orders)
          nullable: true
        quantity:
          example: '0.5'
          type: string
          description: Original order quantity
          nullable: true
        filled_quantity:
          example: '0.2'
          type: string
          description: Quantity filled so far
          nullable: true
        average_fill_price:
          example: '35050.00'
          type: string
          description: Volume-weighted average fill price
          nullable: true
        status:
          example: PARTIALLY_FILLED
          type: string
          description: 'Order status: SUBMITTED, PARTIALLY_FILLED, FILLED, CANCELLED, REJECTED, or EXPIRED'
          nullable: true
        trading_mode:
          example: SPOT
          type: string
          description: 'Trading mode: SPOT or MARGIN'
          nullable: true
        time_in_force:
          example: GTC
          type: string
          description: 'Time in force: GTC, IOC, or FOK'
          nullable: true
        created_at:
          example: 2023-11-13T10:30:00Z
          type: string
          description: Order creation timestamp (ISO 8601)
          nullable: true
        updated_at:
          example: 2023-11-13T10:35:00Z
          type: string
          description: Last update timestamp (ISO 8601)
          nullable: true
        expiration_date:
          example: 2023-11-13T10:35:00Z
          type: string
          description: Order expiration date (ISO 8601)
          nullable: true
        application_taker_fee:
          example: '5'
          type: string
          description: Application taker fee in bps
          nullable: true
        monaco_taker_fee:
          example: '10'
          type: string
          description: Monaco protocol taker fee in bps
          nullable: true
        monaco_maker_rebate:
          example: '-2'
          type: string
          description: Monaco maker rebate in bps (negative)
          nullable: true
        total_taker_fees:
          example: '2.63'
          type: string
          description: Total taker fees charged in quote token
          nullable: true
        taker_total_payment:
          example: '17502.63'
          type: string
          description: Total amount paid by taker (price * qty + fees)
          nullable: true
        maker_total_receipt:
          example: '17496.50'
          type: string
          description: Total amount received by maker (price * qty - rebate)
          nullable: true
    GetOrderbookResponse:
      type: object
      properties:
        base_decimals:
          example: 8
          type: integer
          description: Base token decimal places
          format: int32
          nullable: true
        base_token:
          example: BTC
          type: string
          description: Base token symbol
          nullable: true
        data:
          $ref: '#/components/schemas/OrderbookData'
        event_type:
          example: orderbook_snapshot
          type: string
          description: Event type identifier
          nullable: true
        symbol:
          example: BTC/USDC
          type: string
          description: Trading pair symbol
          nullable: true
        trading_pair_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Trading pair UUID
          format: uuid
          nullable: true
        quote_decimals:
          example: 6
          type: integer
          description: Quote token decimal places
          format: int32
          nullable: true
        quote_token:
          example: USDC
          type: string
          description: Quote token symbol
          nullable: true
        sequence_number:
          example: 12345
          type: integer
          description: Orderbook sequence number
          format: uint32
          nullable: true
        timestamp:
          example: 2023-11-13T10:30:00Z
          type: string
          description: Snapshot timestamp
          nullable: true
        trading_mode:
          example: Spot
          type: string
          description: Trading mode
          nullable: true
      description: Orderbook snapshot with token metadata and sequence number.
    GetPortfolioChartResponse:
      type: object
      properties:
        metric:
          example: pnl
          type: string
          description: Metric used for this query
          nullable: true
        period:
          example: 30d
          type: string
          description: Period used for this query
          nullable: true
        data:
          type: array
          items:
            $ref: '#/components/schemas/ChartDataPoint'
          nullable: true
    GetPortfolioStatsResponse:
      type: object
      properties:
        period:
          example: 30d
          type: string
          description: Period used for this query
          nullable: true
        volume:
          example: '231.81'
          type: string
          description: Total trade volume (sum of quote_volume)
          nullable: true
        total_trades:
          nullable: true
          type: string
          description: Number of trades in period
        total_orders:
          nullable: true
          type: string
          description: Number of orders in period
        fees_paid:
          example: '0.12'
          type: string
          description: Total fees paid by user
          nullable: true
        pnl:
          example: '-0.01'
          type: string
          description: Profit and loss (CREDIT - DEBIT from trade ledger entries)
          nullable: true
        total_equity:
          example: '280.93'
          type: string
          description: Total equity (sum of all balances)
          nullable: true
        spot_equity:
          example: '280.93'
          type: string
          description: Spot account equity
          nullable: true
        perps_equity:
          example: '0.00'
          type: string
          description: Perpetuals account equity
          nullable: true
        win_loss_ratio:
          example: 0.65
          type: number
          description: Ratio of profitable trades to total trades
          format: double
          nullable: true
        max_drawdown:
          example: '0.00'
          type: string
          description: Maximum peak-to-trough drawdown on running PnL
          nullable: true
    GetProfileResponse:
      type: object
      properties:
        id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: User UUID
          format: uuid
          nullable: true
        address:
          maxLength: 42
          type: string
          description: Wallet address
          nullable: true
          pattern: ^0x[0-9a-fA-F]{40}$
          minLength: 42
        username:
          example: trader123
          type: string
          description: Display username
          nullable: true
        account_type:
          example: master
          type: string
          description: 'Account type: master or sub'
          nullable: true
        can_withdraw:
          example: true
          type: boolean
          description: Whether the user is allowed to withdraw
          nullable: true
        created_at:
          example: 2023-11-13T10:30:00Z
          type: string
          description: Account creation timestamp (ISO 8601)
          nullable: true
        maker_fee_bps:
          example: -1
          type: integer
          description: Base maker fee in basis points from active trading pair
          format: int32
          nullable: true
        taker_fee_bps:
          example: 5
          type: integer
          description: Base taker fee in basis points from active trading pair
          format: int32
          nullable: true
        application_taker_fee_bps:
          example: 0
          type: integer
          description: Additional taker fee in basis points from application
          format: int32
          nullable: true
        application_maker_fee_bps:
          example: 0
          type: integer
          description: Additional maker fee in basis points from application
          format: int32
          nullable: true
    GetTradeByIdResponse:
      type: object
      properties:
        trade:
          $ref: '#/components/schemas/PublicTrade'
      description: A single trade.
    GetTradesResponse:
      type: object
      properties:
        trades:
          type: array
          items:
            $ref: '#/components/schemas/PublicTrade'
          nullable: true
        page:
          example: 1
          type: integer
          description: Current page number
          format: uint32
          nullable: true
        page_size:
          example: 25
          type: integer
          description: Maximum number of trades returned
          format: uint32
          nullable: true
      description: Recent trades for a trading pair.
    GetTradingPairResponse:
      type: object
      properties:
        trading_pair:
          $ref: '#/components/schemas/TradingPairData'
      description: Single trading pair details.
    GetUserTradesResponse:
      type: object
      properties:
        trades:
          type: array
          items:
            $ref: '#/components/schemas/UserTrade'
          nullable: true
        page:
          nullable: true
          type: string
          description: Current page number
        page_size:
          nullable: true
          type: string
          description: Items per page
        total:
          nullable: true
          type: string
          description: Total number of trades
        total_pages:
          nullable: true
          type: string
          description: Total number of pages
    LedgerMovement:
      type: object
      properties:
        id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Movement UUID
          format: uuid
          nullable: true
        entry_type:
          example: CREDIT
          type: string
          description: 'Ledger entry type: CREDIT, DEBIT, LOCK, UNLOCK, or FEE'
          nullable: true
        transaction_type:
          example: DEPOSIT
          type: string
          description: 'Transaction type: DEPOSIT, WITHDRAWAL, TRADE, or FEE'
          nullable: true
        amount:
          example: '100.50'
          type: string
          description: Human-readable amount in token units
          nullable: true
        token:
          nullable: true
          type: string
          description: Token contract address
        balance_before:
          example: '900.00'
          type: string
          description: Available balance before this movement
          nullable: true
        balance_after:
          example: '1000.50'
          type: string
          description: Available balance after this movement
          nullable: true
        locked_before:
          example: '50.00'
          type: string
          description: Locked balance before this movement
          nullable: true
        locked_after:
          example: '75.00'
          type: string
          description: Locked balance after this movement
          nullable: true
        reference_id:
          example: ref_123456
          type: string
          description: ID of the related entity (order, trade, etc.)
          nullable: true
        reference_type:
          example: deposit
          type: string
          description: Type of the referenced entity
          nullable: true
        description:
          example: USDC deposit
          type: string
          description: Human-readable description of the movement
          nullable: true
        tx_hash:
          nullable: true
          type: string
          description: On-chain transaction hash (if applicable)
        block_number:
          nullable: true
          type: string
          description: Block number of the on-chain transaction
        created_at:
          example: 2023-11-13T10:30:00Z
          type: string
          description: Movement timestamp (ISO 8601)
          nullable: true
        symbol:
          example: USDC
          type: string
          description: Token symbol
          nullable: true
        decimals:
          example: 6
          type: integer
          description: Token decimal places
          format: int32
          nullable: true
        amount_raw:
          example: '100500000'
          type: string
          description: Raw amount in smallest token unit (no decimals)
          nullable: true
        balance_before_raw:
          example: '900000000'
          type: string
          description: Raw available balance before this movement
          nullable: true
        balance_after_raw:
          example: '1000500000'
          type: string
          description: Raw available balance after this movement
          nullable: true
        locked_before_raw:
          example: '50000000'
          type: string
          description: Raw locked balance before this movement
          nullable: true
        locked_after_raw:
          example: '75000000'
          type: string
          description: Raw locked balance after this movement
          nullable: true
        asset_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Asset UUID
          format: uuid
          nullable: true
        user_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: User UUID who owns this movement
          format: uuid
          nullable: true
        balance_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Balance UUID this movement affects
          format: uuid
          nullable: true
    ListAppBalancesResponse:
      type: object
      properties:
        balances:
          type: array
          items:
            $ref: '#/components/schemas/ApplicationBalance'
          nullable: true
        total:
          example: 50
          type: integer
          description: Total matching balances
          format: uint32
          nullable: true
        page:
          example: 1
          type: integer
          description: Current page number
          format: uint32
          nullable: true
        page_size:
          example: 20
          type: integer
          description: Items per page
          format: uint32
          nullable: true
        total_pages:
          example: 3
          type: integer
          description: Total number of pages
          format: uint32
          nullable: true
    ListAppMovementsResponse:
      type: object
      properties:
        movements:
          type: array
          items:
            $ref: '#/components/schemas/ApplicationMovement'
          nullable: true
        total:
          example: 150
          type: integer
          description: Total matching movements
          format: uint32
          nullable: true
        page:
          example: 1
          type: integer
          description: Current page number
          format: uint32
          nullable: true
        page_size:
          example: 20
          type: integer
          description: Items per page
          format: uint32
          nullable: true
        total_pages:
          example: 8
          type: integer
          description: Total number of pages
          format: uint32
          nullable: true
    ListAppOrdersResponse:
      type: object
      properties:
        orders:
          type: array
          items:
            $ref: '#/components/schemas/ApplicationOrder'
          nullable: true
        total:
          example: 150
          type: integer
          description: Total matching orders
          format: uint32
          nullable: true
        page:
          example: 1
          type: integer
          description: Current page number
          format: uint32
          nullable: true
        page_size:
          example: 20
          type: integer
          description: Items per page
          format: uint32
          nullable: true
        total_pages:
          example: 8
          type: integer
          description: Total number of pages
          format: uint32
          nullable: true
    ListAppUsersResponse:
      type: object
      properties:
        users:
          type: array
          items:
            $ref: '#/components/schemas/AppUser'
          nullable: true
        total:
          example: 50
          type: integer
          description: Total number of users
          format: uint32
          nullable: true
        page:
          example: 1
          type: integer
          description: Current page number
          format: uint32
          nullable: true
        page_size:
          example: 20
          type: integer
          description: Items per page
          format: uint32
          nullable: true
        total_pages:
          example: 3
          type: integer
          description: Total number of pages
          format: uint32
          nullable: true
    ListOrdersResponse:
      type: object
      properties:
        orders:
          type: array
          items:
            $ref: '#/components/schemas/GetOrderResponse'
          nullable: true
        total:
          example: 150
          type: integer
          description: Total number of orders matching the filter
          format: uint32
          nullable: true
        page:
          example: 1
          type: integer
          description: Current page number
          format: uint32
          nullable: true
        page_size:
          example: 20
          type: integer
          description: Items per page
          format: uint32
          nullable: true
        total_pages:
          example: 8
          type: integer
          description: Total number of pages
          format: uint32
          nullable: true
    ListSubAccountsResponse:
      type: object
      properties:
        sub_accounts:
          type: array
          items:
            $ref: '#/components/schemas/SubAccount'
          nullable: true
        total:
          example: 0
          type: integer
          description: Total number of sub-accounts
          format: uint32
          nullable: true
    ListTradingPairsResponse:
      type: object
      properties:
        trading_pairs:
          type: array
          items:
            $ref: '#/components/schemas/TradingPairData'
          nullable: true
        page:
          example: 1
          type: integer
          description: Current page number
          format: uint32
          nullable: true
        page_size:
          example: 20
          type: integer
          description: Items per page
          format: uint32
          nullable: true
        total:
          example: 50
          type: integer
          description: Total number of trading pairs
          format: uint32
          nullable: true
        total_pages:
          example: 3
          type: integer
          description: Total number of pages
          format: uint32
          nullable: true
      description: Paginated list of trading pairs.
    MatchResult:
      type: object
      properties:
        trades_count:
          example: 2
          type: integer
          description: Number of trades generated by this order
          format: int32
          nullable: true
        total_filled:
          example: '0.2'
          type: string
          description: Total quantity filled
          nullable: true
        remaining_quantity:
          example: '0.3'
          type: string
          description: Remaining unfilled quantity
          nullable: true
        average_fill_price:
          example: '35100.00'
          type: string
          description: Volume-weighted average fill price
          nullable: true
        order_status:
          example: PARTIALLY_FILLED
          type: string
          description: Resulting order status after matching
          nullable: true
        actual_slippage_bps:
          example: 15
          type: integer
          description: Actual slippage incurred in basis points
          format: int32
          nullable: true
        max_slippage_bps:
          example: 50
          type: integer
          description: Maximum slippage tolerance that was set
          format: int32
          nullable: true
        execution_price_range:
          $ref: '#/components/schemas/ExecutionPriceRange'
    MintTokensResponse:
      type: object
      properties:
        minted:
          type: array
          items:
            $ref: '#/components/schemas/MintedToken'
          nullable: true
        failed:
          type: array
          items:
            $ref: '#/components/schemas/FailedMint'
          nullable: true
        remaining_requests_24h:
          example: 4
          type: integer
          description: Remaining faucet requests in next 24h
          format: uint32
          nullable: true
    MintedToken:
      type: object
      properties:
        asset_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Asset UUID
          nullable: true
          format: uuid
        symbol:
          example: USDC
          type: string
          description: Token symbol
          nullable: true
        amount:
          example: '10000.00'
          type: string
          description: Amount minted in token units
          nullable: true
        tx_hash:
          nullable: true
          type: string
          description: On-chain transaction hash
    OrderbookData:
      type: object
      properties:
        bids:
          type: array
          items:
            $ref: '#/components/schemas/PriceLevel'
          nullable: true
        asks:
          type: array
          items:
            $ref: '#/components/schemas/PriceLevel'
          nullable: true
        best_bid:
          example: '34900.00'
          type: string
          description: Highest bid price
          nullable: true
        best_ask:
          example: '35100.00'
          type: string
          description: Lowest ask price
          nullable: true
        bid_volume:
          example: '15.5'
          type: string
          description: Total bid-side volume
          nullable: true
        ask_volume:
          example: '12.3'
          type: string
          description: Total ask-side volume
          nullable: true
        price_change:
          $ref: '#/components/schemas/PriceChange'
    PriceChange:
      type: object
      properties:
        price_24h_ago:
          example: '34500.00'
          type: string
          description: Price 24 hours ago
          nullable: true
        price_change_24h:
          example: '500.00'
          type: string
          description: Absolute price change in last 24 hours
          nullable: true
        price_change_percent_24h:
          example: '1.45'
          type: string
          description: Percentage price change in last 24 hours
          nullable: true
    PriceLevel:
      type: object
      properties:
        price:
          example: '35000.00'
          type: string
          description: Price at this level
          nullable: true
        quantity:
          example: '1.5'
          type: string
          description: Total quantity at this price level
          nullable: true
        order_count:
          example: 3
          type: integer
          description: Number of orders at this price level
          format: uint32
          nullable: true
    PublicHealthCheckResponse:
      type: object
      properties:
        status:
          example: healthy
          type: string
          description: 'Health status: healthy or unhealthy'
          nullable: true
        service:
          example: api-gateway
          type: string
          description: Service name
          nullable: true
        version:
          example: 0.1.0
          type: string
          description: Service version
          nullable: true
        timestamp:
          example: 1699872600
          type: integer
          description: Current server timestamp (Unix epoch seconds)
          format: int32
          nullable: true
    PublicTrade:
      type: object
      properties:
        trade_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Trade UUID
          format: uuid
          nullable: true
        trading_pair_id:
          example: 456e7890-e12b-12d3-a456-426614174000
          type: string
          description: Trading pair UUID
          format: uuid
          nullable: true
        price:
          example: '35000.00'
          type: string
          description: Execution price
          nullable: true
        quantity:
          example: '0.5'
          type: string
          description: Traded quantity in base token
          nullable: true
        side:
          example: BUY
          type: string
          description: 'Taker side: BUY or SELL'
          nullable: true
        trading_mode:
          example: SPOT
          type: string
          description: 'Trading mode: SPOT or MARGIN'
          nullable: true
        executed_at:
          example: 2023-11-13T10:30:00Z
          type: string
          description: Trade execution timestamp (ISO 8601)
          nullable: true
    RefreshRequest:
      required:
      - refresh_token
      type: object
      properties:
        refresh_token:
          example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
          type: string
          description: Valid refresh token from a previous authentication
      additionalProperties: false
    RefreshResponse:
      type: object
      properties:
        access_token:
          example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
          type: string
          description: New JWT access token
          nullable: true
        refresh_token:
          example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
          type: string
          description: New JWT refresh token
          nullable: true
        expires_at:
          example: 1699876543
          type: integer
          description: Unix timestamp when access token expires
          format: int32
          nullable: true
    ReplaceOrderRequest:
      type: object
      properties:
        use_master_balance:
          example: false
          type: boolean
          description: Use master account balance for sub-account orders
          nullable: true
        price:
          example: '35500.00'
          type: string
          description: New limit price (if changing)
          nullable: true
        quantity:
          example: '0.7'
          type: string
          description: New quantity (if changing)
          nullable: true
      additionalProperties: false
    ReplaceOrderResponse:
      type: object
      properties:
        order_id:
          example: 987e6543-e21b-12d3-a456-426614174000
          type: string
          description: New replacement order UUID
          format: uuid
          nullable: true
        status:
          example: SUCCESS
          type: string
          description: 'Result status: SUCCESS or FAILED'
          nullable: true
        message:
          example: Order replaced successfully
          type: string
          description: Human-readable status message
          nullable: true
        original_order_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: UUID of the original cancelled order
          format: uuid
          nullable: true
        updated_fields:
          $ref: '#/components/schemas/UpdatedFields'
        match_result:
          $ref: '#/components/schemas/MatchResult'
    RevokeRequest:
      type: object
      properties: {}
      additionalProperties: false
    RevokeResponse:
      type: object
      properties:
        message:
          example: Session revoked successfully
          type: string
          description: Human-readable status message
          nullable: true
    SimulateFeesResponse:
      type: object
      properties:
        notional:
          example: '20000.00'
          type: string
          description: Notional value (price x quantity)
          nullable: true
        monaco_taker_fee:
          example: '20.00'
          type: string
          description: Monaco protocol taker fee in quote token
          nullable: true
        monaco_maker_rebate:
          example: '-5.00'
          type: string
          description: Monaco maker rebate in quote token (negative)
          nullable: true
        application_taker_fee:
          example: '10.00'
          type: string
          description: Application-specific taker fee in quote token
          nullable: true
        total_taker_fees:
          example: '30.00'
          type: string
          description: Total taker fees (monaco + application)
          nullable: true
        taker_total_payment:
          example: '20030.00'
          type: string
          description: Total amount paid by taker (notional + fees)
          nullable: true
        maker_total_receipt:
          example: '19995.00'
          type: string
          description: Total amount received by maker (notional - rebate)
          nullable: true
        buy_order_lock_amount:
          example: '20030.00'
          type: string
          description: Amount locked for buy orders. For MARKET orders, includes slippage buffer.
          nullable: true
        monaco_taker_fee_bps:
          example: 10
          type: integer
          description: Monaco taker fee rate in basis points
          format: int32
          nullable: true
        monaco_maker_rebate_bps:
          example: -2
          type: integer
          description: Monaco maker rebate rate in bps (negative)
          format: int32
          nullable: true
        application_taker_fee_bps:
          example: 5
          type: integer
          description: Application taker fee rate in basis points
          format: int32
          nullable: true
        application_name:
          example: Monaco Trading Frontend
          type: string
          description: Application display name
          nullable: true
        max_quantity:
          example: '99.95'
          type: string
          description: Maximum quantity affordable at the given price, accounting for fees and slippage. Powers the 100% range input on the FE.
          nullable: true
        max_quantity_raw:
          example: '99950000000000000000'
          type: string
          description: Maximum quantity in RAW (smallest unit) format
          nullable: true
        slippage_tolerance_bps:
          example: 500
          type: integer
          description: Slippage tolerance used in the calculation (echoed back)
          format: int32
          nullable: true
    SubAccount:
      type: object
      properties:
        id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Sub-account UUID
          format: uuid
          nullable: true
        address:
          maxLength: 42
          type: string
          description: Sub-account wallet address
          nullable: true
          pattern: ^0x[0-9a-fA-F]{40}$
          minLength: 42
        username:
          example: sub_trader_1
          type: string
          description: Sub-account display username
          nullable: true
        can_withdraw:
          example: false
          type: boolean
          description: Whether the sub-account is allowed to withdraw
          nullable: true
        created_at:
          example: 2023-11-13T10:30:00Z
          type: string
          description: Account creation timestamp (ISO 8601)
          nullable: true
        balances:
          type: array
          items:
            $ref: '#/components/schemas/AccountBalance'
          nullable: true
    SubAccountLimit:
      type: object
      properties:
        id:
          example: 987e6543-e21b-12d3-a456-426614174000
          type: string
          description: Limit UUID
          format: uuid
          nullable: true
        sub_account_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Sub-account UUID this limit applies to
          format: uuid
          nullable: true
        token:
          nullable: true
          type: string
          description: Token contract address
        daily_limit:
          example: '1000.00'
          type: string
          description: Maximum daily spending limit in token units
          nullable: true
        used_today:
          example: '250.50'
          type: string
          description: Amount used today against the limit
          nullable: true
        created_at:
          example: 2023-11-13T10:30:00Z
          type: string
          description: Limit creation timestamp (ISO 8601)
          nullable: true
        updated_at:
          example: 2023-11-13T10:30:00Z
          type: string
          description: Last update timestamp (ISO 8601)
          nullable: true
        master_account_id:
          example: 123e4567-e89b-12d3-a456-426614174001
          type: string
          description: Master account UUID that owns this sub-account
          format: uuid
          nullable: true
        max_amount:
          example: '1500.00'
          type: string
          description: Maximum amount allowed in token units
          nullable: true
        last_reset_at:
          example: 2023-11-13T00:00:00Z
          type: string
          description: Last reset timestamp for the daily limit (ISO 8601)
          nullable: true
        is_active:
          example: true
          type: boolean
          description: Whether the limit is active
          nullable: true
    SubmitWhitelistRequest:
      required:
      - wallet_address
      - email
      type: object
      properties:
        wallet_address:
          description: Applicant wallet address
          maxLength: 42
          minLength: 42
          pattern: ^0x[0-9a-fA-F]{40}$
          type: string
        email:
          example: user@example.com
          minLength: 1
          type: string
          description: Applicant email address
          format: email
        twitter_username:
          example: monaco_user
          maxLength: 15
          minLength: 1
          pattern: ^[A-Za-z0-9_]{1,15}$
          type: string
          description: Applicant Twitter/X username
          nullable: true
        telegram_username:
          example: monaco_user
          maxLength: 32
          minLength: 5
          pattern: ^[a-zA-Z0-9_]{5,32}$
          type: string
          description: Applicant Telegram username
          nullable: true
      additionalProperties: false
    SubmitWhitelistResponse:
      type: object
      properties:
        message:
          example: Your whitelist application has been submitted successfully! We'll review it and get back to you soon.
          type: string
          description: Human-readable status message
          nullable: true
        user_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Created user UUID (pending approval)
          nullable: true
          format: uuid
    TradingPairData:
      type: object
      properties:
        base_asset_id:
          example: 456e7890-e12b-12d3-a456-426614174000
          type: string
          description: Base asset UUID
          format: uuid
          nullable: true
        base_decimals:
          example: 8
          type: integer
          description: Base token decimal places
          format: int32
          nullable: true
        base_icon_url:
          example: https://cdn.0xmonaco.com/assets/btc.svg
          type: string
          description: Base token icon URL
          nullable: true
        base_token:
          example: BTC
          type: string
          description: Base token symbol
          nullable: true
        base_token_contract:
          nullable: true
          type: string
          description: Base token contract address
        id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Trading pair UUID
          format: uuid
          nullable: true
        is_active:
          example: true
          type: boolean
          description: Pair active
          nullable: true
        maker_fee_bps:
          example: -2
          type: integer
          description: Maker fee in bps (negative = rebate)
          format: int32
          nullable: true
        market_type:
          example: SPOT
          type: string
          description: 'Market type: SPOT or MARGIN'
          nullable: true
        max_order_size:
          example: '100.0'
          type: string
          description: Maximum order size in base token
          nullable: true
        min_order_size:
          example: '0.0001'
          type: string
          description: Minimum order size in base token
          nullable: true
        quote_asset_id:
          example: 789e0123-e45b-12d3-a456-426614174000
          type: string
          description: Quote asset UUID
          format: uuid
          nullable: true
        quote_decimals:
          example: 6
          type: integer
          description: Quote token decimal places
          format: int32
          nullable: true
        quote_icon_url:
          example: https://cdn.0xmonaco.com/assets/usdc.svg
          type: string
          description: Quote token icon URL
          nullable: true
        quote_token:
          example: USDC
          type: string
          description: Quote token symbol
          nullable: true
        quote_token_contract:
          nullable: true
          type: string
          description: Quote token contract address
        symbol:
          example: BTC/USDC
          type: string
          description: Trading pair symbol
          nullable: true
        taker_fee_bps:
          example: 10
          type: integer
          description: Taker fee (bps)
          format: int32
          nullable: true
        tick_size:
          example: '0.01'
          type: string
          description: Minimum price increment
          nullable: true
      description: Trading pair configuration including tokens, fees, and order limits.
    UpdateLimitRequest:
      type: object
      properties:
        sub_account_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Sub-account UUID
          format: uuid
          nullable: true
        asset_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Asset UUID
          format: uuid
          nullable: true
        max_amount:
          example: '1500.00'
          minLength: 1
          pattern: ^-?[0-9]{1,28}(\.[0-9]{1,18})?$
          type: string
          description: New maximum amount allowed in token units
          nullable: true
        daily_limit:
          example: '500.00'
          minLength: 1
          pattern: ^-?[0-9]{1,28}(\.[0-9]{1,18})?$
          type: string
          description: New maximum daily spending limit in token units
          nullable: true
        is_active:
          example: true
          type: boolean
          description: Whether the limit is active
          nullable: true
      additionalProperties: false
    UpdateLimitResponse:
      type: object
      properties:
        limit:
          $ref: '#/components/schemas/SubAccountLimit'
    UpdatedFields:
      type: object
      properties:
        price:
          example: '35500.00'
          type: string
          description: New price (if changed)
          nullable: true
        quantity:
          example: '0.7'
          type: string
          description: New quantity (if changed)
          nullable: true
    UserInfo:
      type: object
      properties:
        id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: User UUID
          format: uuid
          nullable: true
        address:
          maxLength: 42
          type: string
          description: Wallet address
          nullable: true
          pattern: ^0x[0-9a-fA-F]{40}$
          minLength: 42
        username:
          example: trader123
          type: string
          description: Display username
          nullable: true
    UserTrade:
      type: object
      properties:
        trade_id:
          example: 123e4567-e89b-12d3-a456-426614174000
          type: string
          description: Trade UUID
          format: uuid
          nullable: true
        trading_pair_id:
          example: 456e7890-e12b-12d3-a456-426614174000
          type: string
          description: Trading pair UUID
          format: uuid
          nullable: true
        price:
          example: '35000.00'
          type: string
          description: Execution price
          nullable: true
        quantity:
          example: '0.5'
          type: string
          description: Traded quantity
          nullable: true
        quote_volume:
          example: '17500.00'
          type: string
          description: Quote volume (price * quantity)
          nullable: true
        side:
          example: Buy
          type: string
          description: 'User''s side: Buy or Sell'
          nullable: true
        fee:
          example: '0.875'
          type: string
          description: Fee paid by this user for this trade
          nullable: true
        fee_token:
          nullable: true
          type: string
          description: Token address of the fee
        executed_at:
          example: 2023-11-13T10:30:00Z
          type: string
          description: Trade execution timestamp (ISO 8601)
          nullable: true
    VerifyRequest:
      required:
      - address
      - signature
      - nonce
      type: object
      properties:
        address:
          description: Ethereum wallet address
          maxLength: 42
          minLength: 42
          pattern: ^0x[0-9a-fA-F]{40}$
          type: string
        signature:
          description: Signed message
          minLength: 1
          type: string
        nonce:
          example: abc123def456
          minLength: 1
          type: string
          description: Challenge nonce
        client_id:
          example: monaco-frontend
          type: string
          description: Optional application identifier
          nullable: true
        chain_id:
          nullable: true
          type: string
          description: Optional chain ID supplied by SDK clients
      additionalProperties: false
    VerifyResponse:
      type: object
      properties:
        access_token:
          example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
          type: string
          description: JWT access token for API requests
          nullable: true
        refresh_token:
          example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
          type: string
          description: JWT refresh token for obtaining new access tokens
          nullable: true
        expires_at:
          example: 1699876543
          type: integer
          description: Unix timestamp when access token expires
          format: int32
          nullable: true
        user:
          $ref: '#/components/schemas/UserInfo'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    apiKey:
      type: apiKey
      name: x-server-key
      in: header
tags:
- name: AccountsService
- name: ApplicationsService
- name: AuthService
- name: FaucetService
- name: FeesService
- name: HealthService
- name: MarketService
- name: OrderbookService
- name: OrdersService
- name: TradesService
- name: WhitelistService