Skip to content

Swap Instructions RPC Method

The jup_SwapInstructions RPC method generates a serialized set of instructions required to execute a token swap on the blockchain. This method supports advanced features such as dynamic slippage, compute unit prioritization, and shared accounts, offering developers precise control over token swap processes.


Endpoint: https://solana-mainnet.backpac.xyz/{YOUR_API_KEY}

Method: POST


Request Parameters

The request parameters are included in the params property of the RPC request body. Below is the interface definition and detailed description of each parameter.

Request Interface: IGetSwapInstructionsRequest

The request body includes the following properties:

ParameterTypeRequiredDefaultDescription
paramsanyYesAdditional parameters required for generating swap instructions.
userPublicKeystringYesPublic key of the user initiating the swap.
wrapAndUnwrapSolbooleanNofalseSpecifies if SOL should be wrapped/unwrapped during the swap.
useSharedAccountsbooleanNofalseEnables the use of shared accounts for improved performance.
feeAccountstringNoFee payer account.
trackingAccountstringNoOptional tracking account for analytics or reporting.
computeUnitPriceMicroLamportsnumberNoPrice per compute unit in micro-lamports.
prioritizationFeeLamportsstring | numberNoFee for prioritizing the transaction in the network.
asLegacyTransactionbooleanNofalseEnables legacy transaction format instead of the default versioned transaction.
useTokenLedgerbooleanNoEnables use of a token ledger for improved transparency and reconciliation.
destinationTokenAccountstringNoThe token account where the output tokens will be deposited.
dynamicComputeUnitLimitbooleanNofalseEnables dynamic compute unit limits to optimize costs.
skipUserAccountsRpcCallsbooleanNofalseSkips RPC calls related to user account validation.
dynamicSlippageobjectNoDynamic slippage configuration.
├─ minBpsnumberYes (if provided)Minimum slippage in BPS.
├─ maxBpsnumberYes (if provided)Maximum slippage in BPS.
quoteResponseobjectYesQuote response object that contains the details of the swap.
├─ inputMintstringYesMint address of the input token.
├─ inAmountstringYesAmount of the input token.
├─ outputMintstringYesMint address of the output token.
├─ outAmountstringYesAmount of the output token.
├─ otherAmountThresholdstringYesThreshold for the amount beyond which the swap is invalid.
├─ swapModestringYes"ExactIn"Swap mode specifying input or output constraints.
├─ slippageBpsnumberYesSlippage percentage in basis points (BPS).
├─ platformFeeobjectNoOptional platform fee details.
│ ├─ amountstringNoPlatform fee amount.
│ ├─ feeBpsnumberNoPlatform fee in BPS.
├─ priceImpactPctstringYesPercentage price impact of the swap.
├─ routePlanarrayYesArray of swap route details.
│ ├─ swapInfoobjectYesDetails of each swap in the route.
│ │ ├─ ammKeystringYesAddress of the Automated Market Maker (AMM).
│ │ ├─ labelstringNoLabel of the AMM.
│ │ ├─ inputMintstringYesMint address of the input token.
│ │ ├─ outputMintstringYesMint address of the output token.
│ │ ├─ inAmountstringYesInput token amount for the swap.
│ │ ├─ outAmountstringYesOutput token amount for the swap.
│ │ ├─ feeAmountstringYesFee amount for the swap.
│ │ ├─ feeMintstringYesMint address of the token used for the fee.

Example Request

json
{
    "method": "jup_SwapInstructions",
    "jsonrpc": "2.0",
    "id": 1,
    "params": {
        "params": {
            "additionalParam": "value"
        },
        "userPublicKey": "user-public-key",
        "wrapAndUnwrapSol": true,
        "useSharedAccounts": false,
        "quoteResponse": {
            "inputMint": "input-mint-address",
            "inAmount": "1000",
            "outputMint": "output-mint-address",
            "outAmount": "950",
            "otherAmountThreshold": "900",
            "swapMode": "ExactIn",
            "slippageBps": 100,
            "priceImpactPct": "0.1"
        }
    }
}

Swap Instructions Response

The response contains details about the swap instructions, including the token ledger instructions, other instructions, compute budget instructions, setup instructions, swap instructions, and cleanup instructions. The response also includes an array of address lookup table addresses.

Response Interface: IGetSwapQuoteResponse

ParameterTypeRequiredDescription
tokenLedgerInstructionobject (optional)NoInstruction for token ledger, containing program ID, accounts, and data.
├─ programIdstringYesThe program ID for the token ledger.
├─ accountsarrayYesList of account objects, each containing pubkey, isSigner, and isWritable.
├─ datastringYesData related to the token ledger instruction.
otherInstructionsarrayNoArray of other instructions with program IDs, accounts, and data.
computeBudgetInstructionsarrayNoArray of compute budget instructions with program IDs, accounts, and data.
setupInstructionsarrayNoArray of setup instructions with program IDs, accounts, and data.
swapInstructionobjectYesThe swap instruction, including program ID, accounts, and data.
├─ programIdstringYesThe program ID for the swap instruction.
├─ accountsarrayYesList of account objects with pubkey, isSigner, and isWritable.
├─ datastringYesData related to the swap instruction.
cleanupInstructionobject (optional)NoCleanup instruction, if applicable, containing program ID, accounts, and data.
addressLookupTableAddressesarrayYesArray of address lookup table addresses.

Example Response

json
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "tokenLedgerInstruction": {
            "programId": "token-ledger-program-id",
            "accounts": [
                {
                    "pubkey": "account-1-public-key",
                    "isSigner": true,
                    "isWritable": true
                },
                {
                    "pubkey": "account-2-public-key",
                    "isSigner": false,
                    "isWritable": true
                }
            ],
            "data": "token-ledger-instruction-data"
        },
        "otherInstructions": [
            {
                "programId": "other-program-id",
                "accounts": [
                    {
                        "pubkey": "account-3-public-key",
                        "isSigner": true,
                        "isWritable": true
                    }
                ],
                "data": "other-instruction-data"
            }
        ],
        "computeBudgetInstructions": [
            {
                "programId": "compute-budget-program-id",
                "accounts": [
                    {
                        "pubkey": "account-4-public-key",
                        "isSigner": false,
                        "isWritable": true
                    }
                ],
                "data": "compute-budget-instruction-data"
            }
        ],
        "setupInstructions": [
            {
                "programId": "setup-program-id",
                "accounts": [
                    {
                        "pubkey": "account-5-public-key",
                        "isSigner": true,
                        "isWritable": false
                    }
                ],
                "data": "setup-instruction-data"
            }
        ],
        "swapInstruction": {
            "programId": "swap-program-id",
            "accounts": [
                {
                    "pubkey": "account-6-public-key",
                    "isSigner": true,
                    "isWritable": true
                }
            ],
            "data": "swap-instruction-data"
        },
        "cleanupInstruction": {
            "programId": "cleanup-program-id",
            "accounts": [
                {
                    "pubkey": "account-7-public-key",
                    "isSigner": false,
                    "isWritable": true
                }
            ],
            "data": "cleanup-instruction-data"
        },
        "addressLookupTableAddresses": [
            "address-lookup-table-1",
            "address-lookup-table-2"
        ]
    }
}

The RPC Layer for the blockchain