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
Field | Type | Required | Default | Description |
---|---|---|---|---|
quoteResponse | any | Yes | None | The quote response received from the quote API endpoint. |
userPublicKey | string | Yes | None | The public key of the user executing the swap. |
wrapAndUnwrapSol | boolean | No | false | If true , wraps or unwraps SOL as required for the swap. |
feeAccount | string | No | None | Account to receive platform fees, if applicable. |
dynamicComputeUnitLimit | boolean | No | false | Enables dynamic adjustment of compute unit limits for the transaction. |
prioritizationFeeLamports | string , number | No | None | Fee in lamports for transaction prioritization. |
dynamicSlippage | { maxBps: number } | No | None | Dynamic slippage configuration. maxBps specifies the maximum slippage in BPS. |
asLegacyTransaction | boolean | No | false | If true , generates a legacy transaction instead of a versioned transaction. |
computeUnitPriceMicroLamports | number | No | None | Price per compute unit in micro-lamports for prioritization. |
computeUnitLimit | number | No | None | The maximum compute units allocated for the transaction. |
feeBps | number | No | None | Fee 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
Field | Type | Description |
---|---|---|
swapTransaction | string | The serialized swap transaction ready for execution. |
setupTransaction | string | (Optional) Serialized setup transaction required before the main swap transaction. |
cleanupTransaction | string | (Optional) Serialized cleanup transaction required after the main swap transaction. |
addressLookupTableAccounts | Array<{ key: string; addresses: Array<string>; }> | (Optional) Address lookup table accounts required for the transaction. |
lastValidBlockHeight | number | The last valid block height for the transaction to be executed. |
prioritizationFeeLamports | number | (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"
}
}
}