-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathswagger.yaml
More file actions
649 lines (628 loc) · 22.1 KB
/
swagger.yaml
File metadata and controls
649 lines (628 loc) · 22.1 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
openapi: '3.0.2'
info:
title: Swap API
version: 1.0.0
description: |
API reference for Jupiter's Swap API, including Quote, Swap and Swap Instructions endpoints.
### Rate Limits
Since 1 December 2024, we have updated our API structure. Please refer to https://dev.jup.ag/ for further details on usage and rate limits.
### Usage
- API Wrapper Typescript https://github.com/jup-ag/jupiter-quote-api-node
### Data Types To Note
- Public keys are base58 encoded strings
- Raw data such as Vec<u8\> are base64 encoded strings
servers:
- url: https://api.jup.ag/swap/v1
paths:
/quote:
get:
operationId: QuoteGet
tags:
- Swap
summary: quote
description: |
Request for a quote to be used in `POST /swap`
parameters:
- $ref: '#/components/parameters/InputMintParameter'
- $ref: '#/components/parameters/OutputMintParameter'
- $ref: '#/components/parameters/AmountParameter'
- $ref: '#/components/parameters/SlippageParameter'
- $ref: '#/components/parameters/SwapModeParameter'
- $ref: '#/components/parameters/DexesParameter'
- $ref: '#/components/parameters/ExcludeDexesParameter'
- $ref: '#/components/parameters/RestrictIntermediateTokensParameter'
- $ref: '#/components/parameters/OnlyDirectRoutesParameter'
- $ref: '#/components/parameters/AsLegacyTransactionParameter'
- $ref: '#/components/parameters/PlatformFeeBpsParameter'
- $ref: '#/components/parameters/MaxAccountsParameter'
- $ref: '#/components/parameters/InstructionVersion'
- $ref: '#/components/parameters/DynamicSlippage'
responses:
'200':
description: "Successful response to be used in `/swap`"
content:
application/json:
schema:
$ref: '#/components/schemas/QuoteResponse'
/swap:
post:
operationId: SwapPost
tags:
- Swap
summary: swap
description: |
Request for a base64-encoded unsigned swap transaction based on the `/quote` response
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/SwapRequest'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/SwapResponse'
/swap-instructions:
post:
operationId: SwapInstructionsPost
tags:
- Swap
summary: swap-instructions
description: |
Request for swap instructions that you can use from the quote you get from `/quote`
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/SwapRequest'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/SwapInstructionsResponse'
/program-id-to-label:
get:
operationId: ProgramIdToLabelGet
tags:
- Swap
summary: program-id-to-label
description: |
Returns a hash, which key is the program id and value is the label.
This is used to help map error from transaction by identifying the fault program id.
This can be used in conjunction with the `excludeDexes` or `dexes` parameter.
responses:
'200':
description: Default response
content:
application/json:
schema:
type: object
additionalProperties:
type: string
components:
schemas:
Instruction:
type: object
properties:
programId:
type: string
accounts:
type: array
items:
$ref: '#/components/schemas/AccountMeta'
data:
type: string
required:
- programId
- accounts
- data
AccountMeta:
type: object
properties:
pubkey:
type: string
isSigner:
type: boolean
isWritable:
type: boolean
required:
- pubkey
- isSigner
- isWritable
QuoteResponse:
type: object
required:
- inputMint
- outputMint
- inAmount
- outAmount
- otherAmountThreshold
- swapMode
- slippageBps
- priceImpactPct
- routePlan
properties:
inputMint:
type: string
inAmount:
type: string
outputMint:
type: string
outAmount:
type: string
description: |
- Calculated output amount from routing engine
- The value includes platform fees and DEX fees, excluding slippage
otherAmountThreshold:
type: string
description: |
- Calculated minimum output amount after accounting for `slippageBps` on the `outAmount` value
- Not used by `/swap` endpoint to build transaction
instructionVersion:
type: string
description: |
- The version of instruction to use in the swap program
enum:
- V1
- V2
nullable: true
swapMode:
$ref: '#/components/schemas/SwapMode'
required: true
slippageBps:
type: integer
format: uint16
minimum: 0
platformFee:
$ref: '#/components/schemas/PlatformFee'
priceImpactPct:
type: string
routePlan:
type: array
items:
$ref: '#/components/schemas/RoutePlanStep'
contextSlot:
type: integer
format: uint64
timeTaken:
type: number
SwapMode:
type: string
enum:
- ExactIn
- ExactOut
PlatformFee:
type: object
properties:
amount:
type: string
feeBps:
type: integer
format: uint16
RoutePlanStep:
type: object
properties:
swapInfo:
$ref: '#/components/schemas/SwapInfo'
percent:
type: integer
format: uint8
nullable: true
bps:
type: integer
format: uint16
required:
- swapInfo
SwapInfo:
type: object
required:
- ammKey
- inputMint
- outputMint
- inAmount
- outAmount
properties:
ammKey:
type: string
label:
type: string
inputMint:
type: string
outputMint:
type: string
inAmount:
type: string
outAmount:
type: string
SwapRequest:
type: object
required:
- userPublicKey
- quoteResponse
properties:
userPublicKey:
type: string
payer:
description: |
- Allow a custom payer to pay for the transaction fees and rent of token accounts
- Note that users can close their ATAs elsewhere and have you reopen them again, your fees should account for this
type: string
wrapAndUnwrapSol:
description: |
- To automatically wrap/unwrap SOL in the transaction, as WSOL is an SPL token while native SOL is not
- When true and input mint is SOL, it will wrap the SOL amount to WSOL and swap
- When true and output mint is SOL, it will unwrap the WSOL back to SOL
- When false and input mint is SOL, it will use existing WSOL amount to swap
- When false and output mint is SOL, it will not unwrap the WSOL to SOL
- To set this parameter to false, you need to have the WSOL token account initialized
type: boolean
default: true
useSharedAccounts:
description: |
- The default is determined dynamically by the routing engine, allowing us to optimize for compute units, etc
- This enables the usage of shared program accounts, this is essential as complex routing will require multiple intermediate token accounts which the user might not have
- If true, you do not need to handle the creation of intermediate token accounts for the user
- Do note, shared accounts route will fail on some new AMMs (low liquidity token)
type: boolean
feeAccount:
description: |
- An initialized token account that will be used to collect fees
- The mint of the token account **can only be either the input or output mint of the swap**
- Swap API no longer requires the use of the Referral Program
- If `platformFeeBps` is passed in `/quote`, the `feeAccount` must be passed as well
type: string
trackingAccount:
description: |
- Specify any public key that belongs to you to track the transactions
- Useful for integrators to get all the swap transactions from this public key
- Query the data using a block explorer like Solscan/SolanaFM or query like Dune/Flipside
type: string
prioritizationFeeLamports:
description: |
- To specify a level or amount of additional fees to prioritize the transaction
- It can be used for EITHER priority fee OR Jito tip (not both at the same time)
- If you want to include both, you will need to use `/swap-instructions` to add both at the same time
- Defaults to `auto`, but preferred to use `priorityLevelWithMaxLamports` as it may be more accurate when accounting local fee market
- Fixed lamports can be passed in as an integer in the `prioritizationFeeLamports` parameter
oneOf:
- $ref: '#/components/schemas/PriorityLevelWithMaxLamports'
- $ref: '#/components/schemas/JitoTipLamports'
- $ref: '#/components/schemas/JitoTipLamportsWithPayer'
asLegacyTransaction:
description: |
- Builds a legacy transaction rather than the default versioned transaction
- Used together with `asLegacyTransaction` in `/quote`, otherwise the transaction might be too large
type: boolean
default: false
destinationTokenAccount:
description: |
- Public key of a token account that will be used to receive the token out of the swap
- If not provided, the signer's token account will be used
- If provided, we assume that the token account is already initialized
- `destinationTokenAccount` and `nativeDestinationAccount` are mutually exclusive
type: string
nativeDestinationAccount:
description: |
- Public key of an account that will be used to receive the native SOL token out of the swap
- If not provided, the swap will default unwrap the WSOL and transfer the native SOL to the swap authority account
- If provided, we will unwrap the WSOL and transfer the native SOL to the account
- Only works if the output mint is SOL, is using the V2 instructions and the account passed in is not owned by token program
- When sending native SOL to a new account, you must swap at least enough to cover the rent required to create it.
- `destinationTokenAccount` and `nativeDestinationAccount` are mutually exclusive
type: string
dynamicComputeUnitLimit:
description: |
- When enabled, it will do a swap simulation to get the compute unit used and set it in ComputeBudget's compute unit limit
- This incurs one extra RPC call to simulate this
- We recommend to enable this to estimate compute unit correctly and reduce priority fees needed or have higher chance to be included in a block
type: boolean
default: false
skipUserAccountsRpcCalls:
description: |
- When enabled, it will not do any additional RPC calls to check on required accounts
- The returned swap transaction will still attempt to create required accounts regardless if it exists or not
type: boolean
default: false
dynamicSlippage:
description: |
- When enabled, it estimates slippage and apply it in the swap transaction directly, overwriting the `slippageBps` parameter in the quote response.
- This is no longer maintained, we are focusing efforts on RTSE on Ultra Swap API
type: boolean
default: false
computeUnitPriceMicroLamports:
description: |
- To use an exact compute unit price to calculate priority fee
- `computeUnitLimit (1400000) * computeUnitPriceMicroLamports`
- We recommend using `prioritizationFeeLamports` and `dynamicComputeUnitLimit` instead of passing in your own compute unit price
type: integer
format: uint64
blockhashSlotsToExpiry:
description: |
- Pass in the number of slots we want the transaction to be valid for
- Example: If you pass in 10 slots, the transaction will be valid for ~400ms * 10 = approximately 4 seconds before it expires
type: integer
format: uint8
quoteResponse:
$ref: '#/components/schemas/QuoteResponse'
SwapResponse:
type: object
properties:
swapTransaction:
type: string
lastValidBlockHeight:
type: integer
format: uint64
prioritizationFeeLamports:
type: integer
format: uint64
required:
- swapTransaction
- lastValidBlockHeight
SwapInstructionsResponse:
type: object
properties:
otherInstructions:
description: |
- If you set jito tips using the `prioritizationFeeLamports` parameter, you will see a custom tip instruction to Jito here.
type: array
items:
$ref: '#/components/schemas/Instruction'
computeBudgetInstructions:
description: |
- To setup the compute budget for the transaction.
type: array
items:
$ref: '#/components/schemas/Instruction'
setupInstructions:
description: |
- To setup required token accounts for the users.
type: array
items:
$ref: '#/components/schemas/Instruction'
swapInstruction:
description: |
- The actual swap instruction.
$ref: '#/components/schemas/Instruction'
cleanupInstruction:
description: |
- To wrap and unwrap the SOL.
$ref: '#/components/schemas/Instruction'
addressLookupTableAddresses:
description: |
- The lookup table addresses if you are using versioned transaction.
type: array
items:
type: string
required:
- computeBudgetInstructions
- otherInstructions
- setupInstructions
- swapInstruction
- addressLookupTableAddresses
IndexedRouteMapResponse:
type: object
required:
- mintKeys
- indexedRouteMap
properties:
mintKeys:
type: array
items:
type: string
description: All the mints that are indexed to match in indexedRouteMap
indexedRouteMap:
type: object
description: All the possible route and their corresponding output mints
additionalProperties:
type: array
items:
type: number
example:
'1':
- 2
- 3
- 4
'2':
- 1
- 3
- 4
PriorityLevelWithMaxLamports:
title: "priorityLevelWithMaxLamports"
type: object
properties:
priorityLevelWithMaxLamports:
type: object
properties:
priorityLevel:
type: string
enum: [medium, high, veryHigh]
maxLamports:
type: integer
format: uint64
description: |
- Maximum lamports to cap the priority fee estimation, to prevent overpaying
global:
type: boolean
default: false
description: |
- A boolean to choose between using a global or local fee market to estimate. If `global` is set to `false`, the estimation focuses on fees relevant to the **writable accounts** involved in the instruction.
required: [priorityLevel, maxLamports]
additionalProperties: false
required: [priorityLevelWithMaxLamports]
additionalProperties: false
JitoTipLamports:
title: "jitoTipLamports"
type: object
properties:
jitoTipLamports:
type: integer
format: uint64
description: |
- Exact amount of tip to use in a tip instruction
- Refer to Jito docs on how to estimate the tip amount based on percentiles
- It has to be used together with a connection to a Jito RPC
- See their docs at https://docs.jito.wtf/
required: [jitoTipLamports]
additionalProperties: false
JitoTipLamportsWithPayer:
title: "jitoTipLamportsWithPayer"
type: object
properties:
jitoTipLamportsWithPayer:
type: object
properties:
lamports:
type: integer
format: uint64
description: Exact amount of lamports to use for the tip
payer:
type: string
description: Public key of an account that will be used to pay for the tip
required: [lamports, payer]
additionalProperties: false
required: [jitoTipLamportsWithPayer]
additionalProperties: false
parameters:
InputMintParameter:
name: inputMint
in: query
required: true
schema:
type: string
OutputMintParameter:
name: outputMint
in: query
required: true
schema:
type: string
AmountParameter:
name: amount
description: |
- Raw amount to swap (before decimals)
- Input Amount if `SwapMode=ExactIn`
- Output Amount if `SwapMode=ExactOut`
in: query
required: true
schema:
type: integer
format: uint64
SlippageParameter:
name: slippageBps
description: |
- Default: 50
- This is threshold denoted in basis points.
- If exact in and output amount exceeds the threshold, then the swap transaction will fail.
in: query
schema:
type: integer
format: uint16
default: 50
SwapModeParameter:
name: swapMode
description: |
- ExactOut is for supporting use cases where you need an exact output amount
- In the case of `ExactIn`, the slippage is on the output token
- In the case of `ExactOut`, the slippage is on the input token
- Not all AMMs support `ExactOut`: Currently only Orca Whirlpool, Raydium CLMM, Raydium CPMM
- We do not recommend using `ExactOut` for most use cases
in: query
schema:
type: string
enum:
- ExactIn
- ExactOut
default: ExactIn
DexesParameter:
name: dexes
description: |
- Multiple DEXes can be pass in by comma separating them
- For example: `dexes=Raydium,Orca+V2,Meteora+DLMM`
- If a DEX is indicated, the route will **only use** that DEX
- Full list of DEXes here: https://lite-api.jup.ag/swap/v1/program-id-to-label
in: query
schema:
type: array
items:
type: string
ExcludeDexesParameter:
name: excludeDexes
description: |
- Multiple DEXes can be pass in by comma separating them
- For example: `excludeDexes=Raydium,Orca+V2,Meteora+DLMM`
- If a DEX is indicated, the route will **not use** that DEX
- Full list of DEXes here: https://lite-api.jup.ag/swap/v1/program-id-to-label
in: query
schema:
type: array
items:
type: string
RestrictIntermediateTokensParameter:
name: restrictIntermediateTokens
description: |
- Restrict intermediate tokens within a route to a set of more stable tokens
- This will help to reduce exposure to potential high slippage routes
in: query
schema:
type: boolean
default: true
OnlyDirectRoutesParameter:
name: onlyDirectRoutes
description: |
- Direct route limits Jupiter routing to single hop routes only
- This may result in worse routes
in: query
schema:
type: boolean
default: false
AsLegacyTransactionParameter:
name: asLegacyTransaction
description: |
- Instead of using versioned transaction, this will use the legacy transaction
in: query
schema:
type: boolean
default: false
MaxAccountsParameter:
name: maxAccounts
description: |
- Rough estimate of the max accounts to be used for the quote
- Useful if composing your own transaction or to be more precise in resource accounting for better routes
in: query
schema:
type: integer
format: uint64 # usize
default: 64
PlatformFeeBpsParameter:
name: platformFeeBps
description: |
- Take fees in basis points
- If `platformFeeBps` is passed in, the `feeAccount` in `/swap` must be passed as well
in: query
schema:
type: integer
format: uint16
InstructionVersion:
name: instructionVersion
description: |
- The version of instruction to use in the swap program
in: query
schema:
type: string
enum:
- V1
- V2
default: V1
DynamicSlippage:
name: dynamicSlippage
description: |
- No longer applicable, only required to pass in via `/swap` endpoint
in: query
schema:
type: boolean
default: false