Skip to content

Swap RPC Method

The jup_Swap RPC method generates a serialized transaction for executing token swaps based on a provided quote. This endpoint offers advanced options such as dynamic slippage, fee configuration, and compute unit prioritization for optimal transaction execution.


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

FieldTypeRequiredDefaultDescription
quoteResponseanyYesNoneThe quote response received from the quote API endpoint.
userPublicKeystringYesNoneThe public key of the user executing the swap.
wrapAndUnwrapSolbooleanNofalseIf true, wraps or unwraps SOL as required for the swap.
feeAccountstringNoNoneAccount to receive platform fees, if applicable.
dynamicComputeUnitLimitbooleanNofalseEnables dynamic adjustment of compute unit limits for the transaction.
prioritizationFeeLamportsstring, numberNoNoneFee in lamports for transaction prioritization.
dynamicSlippage{ maxBps: number }NoNoneDynamic slippage configuration. maxBps specifies the maximum slippage in BPS.
asLegacyTransactionbooleanNofalseIf true, generates a legacy transaction instead of a versioned transaction.
computeUnitPriceMicroLamportsnumberNoNonePrice per compute unit in micro-lamports for prioritization.
computeUnitLimitnumberNoNoneThe maximum compute units allocated for the transaction.
feeBpsnumberNoNoneFee in BPS deducted during the swap.

Example Request

json
{
    "method": "jup_Swap",
    "jsonrpc": "2.0",
    "id": 1,
    "params": {
        "quoteResponse": { /* Quote response data */},
        "userPublicKey": "UserPublicKeyAddress",
        "wrapAndUnwrapSol": true,
        "feeAccount": "FeeAccountAddress",
        "dynamicComputeUnitLimit": true,
        "prioritizationFeeLamports": 1000,
        "dynamicSlippage": {
            "maxBps": 50
        },
        "asLegacyTransaction": false,
        "computeUnitPriceMicroLamports": 100,
        "computeUnitLimit": 200000,
        "feeBps": 20
    }
}

Response Interface: IGetSerializedSwapTransactionResponse

FieldTypeDescription
swapTransactionstringThe serialized swap transaction ready for execution.
setupTransactionstring(Optional) Serialized setup transaction required before the main swap transaction.
cleanupTransactionstring(Optional) Serialized cleanup transaction required after the main swap transaction.
addressLookupTableAccountsArray<{ key: string; addresses: Array<string>; }>(Optional) Address lookup table accounts required for the transaction.
lastValidBlockHeightnumberThe last valid block height for the transaction to be executed.
prioritizationFeeLamportsnumber(Optional) Fee in lamports applied for transaction prioritization.
dynamicSlippageReport{ slippageBps?: number; otherAmount?: number; simulatedIncurredSlippageBps?: number; amplificationRatio?: string; }(Optional) Detailed report on dynamic slippage applied during the transaction.

Response Body

json
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "swapTransaction": "SerializedSwapTransactionString",
        "setupTransaction": "SerializedSetupTransactionString",
        "cleanupTransaction": "SerializedCleanupTransactionString",
        "addressLookupTableAccounts": [
            {
                "key": "LookupTableKey",
                "addresses": [
                    "Address1",
                    "Address2"
                ]
            }
        ],
        "lastValidBlockHeight": 12345678,
        "prioritizationFeeLamports": 1000,
        "dynamicSlippageReport": {
            "slippageBps": 50,
            "otherAmount": 1000000,
            "simulatedIncurredSlippageBps": 40,
            "amplificationRatio": "1.5"
        }
    }
}

The RPC Layer for the blockchain