forked from joaquinbejar/matchbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
841 lines (800 loc) · 19 KB
/
openapi.yaml
File metadata and controls
841 lines (800 loc) · 19 KB
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
openapi: 3.0.3
info:
title: Matchbook API
description: |
REST API for Matchbook, a high-performance Central Limit Order Book on Solana.
## Authentication
Most endpoints are public. For higher rate limits, include your API key:
```
X-API-Key: your-api-key
```
For transaction building endpoints, sign requests with your wallet.
version: 1.0.0
contact:
name: Matchbook Support
email: support@matchbook.taunais.com
license:
name: MIT
url: https://opensource.org/licenses/MIT
servers:
- url: https://api.matchbook.taunais.com/v1
description: Production
- url: https://api.devnet.matchbook.taunais.com/v1
description: Devnet
tags:
- name: Markets
description: Market information and statistics
- name: Order Book
description: Order book data
- name: Trades
description: Trade history
- name: Accounts
description: User account information
- name: Transactions
description: Transaction building
paths:
/markets:
get:
tags:
- Markets
summary: List all markets
description: Returns a list of all available trading markets
operationId: getMarkets
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
markets:
type: array
items:
$ref: '#/components/schemas/MarketSummary'
/markets/{address}:
get:
tags:
- Markets
summary: Get market details
description: Returns detailed information about a specific market
operationId: getMarket
parameters:
- name: address
in: path
required: true
description: Market address (base58)
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
market:
$ref: '#/components/schemas/Market'
stats:
$ref: '#/components/schemas/MarketStats'
'404':
$ref: '#/components/responses/NotFound'
/markets/{address}/orderbook:
get:
tags:
- Order Book
summary: Get order book (L2)
description: Returns aggregated order book with price levels
operationId: getOrderbook
parameters:
- name: address
in: path
required: true
schema:
type: string
- name: depth
in: query
description: Number of price levels
schema:
type: integer
default: 20
maximum: 500
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/OrderBook'
/markets/{address}/orderbook/l3:
get:
tags:
- Order Book
summary: Get order book (L3)
description: Returns full order book with individual orders
operationId: getOrderbookL3
parameters:
- name: address
in: path
required: true
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/OrderBookL3'
/markets/{address}/trades:
get:
tags:
- Trades
summary: Get recent trades
description: Returns recent trades for a market
operationId: getTrades
parameters:
- name: address
in: path
required: true
schema:
type: string
- name: limit
in: query
schema:
type: integer
default: 100
maximum: 1000
- name: before
in: query
description: Pagination cursor
schema:
type: string
- name: after
in: query
description: Pagination cursor
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
trades:
type: array
items:
$ref: '#/components/schemas/Trade'
pagination:
$ref: '#/components/schemas/Pagination'
/markets/{address}/candles:
get:
tags:
- Trades
summary: Get OHLCV candles
description: Returns candlestick data for a market
operationId: getCandles
parameters:
- name: address
in: path
required: true
schema:
type: string
- name: interval
in: query
required: true
schema:
type: string
enum: ['1m', '5m', '15m', '1h', '4h', '1d']
- name: start_time
in: query
schema:
type: string
format: date-time
- name: end_time
in: query
schema:
type: string
format: date-time
- name: limit
in: query
schema:
type: integer
default: 100
maximum: 1500
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
candles:
type: array
items:
$ref: '#/components/schemas/Candle'
/accounts/{owner}/orders:
get:
tags:
- Accounts
summary: Get user orders
description: Returns open orders for a user
operationId: getUserOrders
parameters:
- name: owner
in: path
required: true
description: Wallet address
schema:
type: string
- name: market
in: query
description: Filter by market
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
orders:
type: array
items:
$ref: '#/components/schemas/Order'
/accounts/{owner}/trades:
get:
tags:
- Accounts
summary: Get user trades
description: Returns trade history for a user
operationId: getUserTrades
parameters:
- name: owner
in: path
required: true
schema:
type: string
- name: market
in: query
schema:
type: string
- name: start_time
in: query
schema:
type: string
format: date-time
- name: end_time
in: query
schema:
type: string
format: date-time
- name: limit
in: query
schema:
type: integer
default: 100
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
trades:
type: array
items:
$ref: '#/components/schemas/UserTrade'
/accounts/{owner}/balances:
get:
tags:
- Accounts
summary: Get user balances
description: Returns balances in markets for a user
operationId: getUserBalances
parameters:
- name: owner
in: path
required: true
schema:
type: string
- name: market
in: query
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
balances:
type: array
items:
$ref: '#/components/schemas/Balance'
/tx/place-order:
post:
tags:
- Transactions
summary: Build place order transaction
operationId: buildPlaceOrder
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/PlaceOrderRequest'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/TransactionResponse'
'400':
$ref: '#/components/responses/BadRequest'
/tx/cancel-order:
post:
tags:
- Transactions
summary: Build cancel order transaction
operationId: buildCancelOrder
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CancelOrderRequest'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/TransactionResponse'
/tx/cancel-all:
post:
tags:
- Transactions
summary: Build cancel all orders transaction
operationId: buildCancelAll
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CancelAllRequest'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/TransactionResponse'
/tx/settle:
post:
tags:
- Transactions
summary: Build settle funds transaction
operationId: buildSettle
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/SettleRequest'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/TransactionResponse'
components:
schemas:
MarketSummary:
type: object
properties:
address:
type: string
description: Market address
base_mint:
type: string
quote_mint:
type: string
base_symbol:
type: string
quote_symbol:
type: string
base_decimals:
type: integer
quote_decimals:
type: integer
tick_size:
type: string
lot_size:
type: string
min_order_size:
type: string
taker_fee_bps:
type: integer
maker_fee_bps:
type: integer
state:
type: string
enum: [active, paused, cancel_only]
volume_24h:
type: string
price_change_24h:
type: string
Market:
type: object
properties:
address:
type: string
base_mint:
type: string
quote_mint:
type: string
bids_address:
type: string
asks_address:
type: string
event_queue:
type: string
base_vault:
type: string
quote_vault:
type: string
tick_size:
type: string
lot_size:
type: string
min_order_size:
type: string
taker_fee_bps:
type: integer
maker_fee_bps:
type: integer
state:
type: string
MarketStats:
type: object
properties:
best_bid:
type: string
best_ask:
type: string
last_price:
type: string
volume_24h:
type: string
high_24h:
type: string
low_24h:
type: string
price_change_24h:
type: string
trade_count_24h:
type: integer
OrderBook:
type: object
properties:
market:
type: string
slot:
type: integer
timestamp:
type: string
format: date-time
sequence:
type: integer
bids:
type: array
items:
$ref: '#/components/schemas/PriceLevel'
asks:
type: array
items:
$ref: '#/components/schemas/PriceLevel'
PriceLevel:
type: object
properties:
price:
type: string
quantity:
type: string
orders:
type: integer
OrderBookL3:
type: object
properties:
market:
type: string
slot:
type: integer
bids:
type: array
items:
$ref: '#/components/schemas/OrderBookOrder'
asks:
type: array
items:
$ref: '#/components/schemas/OrderBookOrder'
OrderBookOrder:
type: object
properties:
order_id:
type: string
price:
type: string
quantity:
type: string
owner:
type: string
timestamp:
type: string
format: date-time
Trade:
type: object
properties:
id:
type: string
price:
type: string
quantity:
type: string
side:
type: string
enum: [buy, sell]
timestamp:
type: string
format: date-time
maker_order_id:
type: string
taker_order_id:
type: string
UserTrade:
type: object
properties:
id:
type: string
market:
type: string
order_id:
type: string
side:
type: string
enum: [buy, sell]
role:
type: string
enum: [maker, taker]
price:
type: string
quantity:
type: string
fee:
type: string
fee_token:
type: string
timestamp:
type: string
format: date-time
Candle:
type: object
properties:
timestamp:
type: string
format: date-time
open:
type: string
high:
type: string
low:
type: string
close:
type: string
volume:
type: string
trade_count:
type: integer
Order:
type: object
properties:
order_id:
type: string
market:
type: string
side:
type: string
enum: [bid, ask]
price:
type: string
original_quantity:
type: string
remaining_quantity:
type: string
filled_quantity:
type: string
order_type:
type: string
enum: [limit, market, post_only]
status:
type: string
enum: [open, partial_fill, filled, cancelled, expired]
client_order_id:
type: integer
placed_at:
type: string
format: date-time
Balance:
type: object
properties:
market:
type: string
open_orders_account:
type: string
base:
$ref: '#/components/schemas/TokenBalance'
quote:
$ref: '#/components/schemas/TokenBalance'
TokenBalance:
type: object
properties:
locked:
type: string
free:
type: string
total:
type: string
PlaceOrderRequest:
type: object
required:
- market
- owner
- side
- price
- quantity
- order_type
properties:
market:
type: string
owner:
type: string
side:
type: string
enum: [bid, ask]
price:
type: string
quantity:
type: string
order_type:
type: string
enum: [limit, market, post_only]
time_in_force:
type: string
enum: [gtc, ioc, fok]
default: gtc
client_order_id:
type: integer
self_trade_behavior:
type: string
enum: [cancel_taker, cancel_maker, abort]
CancelOrderRequest:
type: object
required:
- market
- owner
- order_id
- side
properties:
market:
type: string
owner:
type: string
order_id:
type: string
side:
type: string
enum: [bid, ask]
CancelAllRequest:
type: object
required:
- market
- owner
properties:
market:
type: string
owner:
type: string
side:
type: string
enum: [bid, ask]
SettleRequest:
type: object
required:
- market
- owner
properties:
market:
type: string
owner:
type: string
TransactionResponse:
type: object
properties:
transaction:
type: string
description: Base64-encoded transaction
message:
type: string
description: Base64-encoded message
signers:
type: array
items:
type: string
estimated_fee:
type: integer
accounts_to_create:
type: array
items:
type: string
warnings:
type: array
items:
type: string
Pagination:
type: object
properties:
has_more:
type: boolean
next_cursor:
type: string
Error:
type: object
properties:
error:
type: object
properties:
code:
type: string
message:
type: string
details:
type: object
responses:
BadRequest:
description: Bad request
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
NotFound:
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
RateLimited:
description: Rate limit exceeded
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: X-API-Key
security:
- {}
- ApiKeyAuth: []