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 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