Skip to content

Quote RPC Method

The jup_Quote RPC method allows you to fetch a price quote for swapping tokens. This endpoint supports advanced parameters for greater control over the quote process, including slippage tolerance, swap modes, and DEX inclusion/exclusion.


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

FieldTypeRequiredDefaultDescription
inputMintstringYesNoneThe mint address of the input token.
outputMintstringYesNoneThe mint address of the output token.
amountnumberYesNoneThe amount of tokens to swap, factoring in token decimals.
slippageBpsnumberNo50Slippage percentage in basis points (BPS).
swapMode"ExactIn", "ExactOut"No"ExactIn"Swap mode. Use "ExactIn" for exact input token swaps or "ExactOut" for exact output token swaps.
dexesstring[]NoInclude all DEXesList of specific DEXes to include in the swap process.
excludeDexesstring[]NoInclude all DEXesList of DEXes to exclude from the swap process.
restrictIntermediateTokensbooleanNofalseRestrict intermediate tokens to a set with stable liquidity.
onlyDirectRoutesbooleanNofalseIf true, restricts the quote to single-hop routes.
asLegacyTransactionbooleanNofalseIf true, generates a legacy transaction instead of a versioned transaction.
platformFeeBpsnumberNoNonePlatform fee in BPS, deducted from the output token.
maxAccountsnumberNoNoneMaximum accounts estimate for the quote.
autoSlippagebooleanNofalseEnables smart slippage suggestion.
maxAutoSlippageBpsnumberNoNoneMaximum slippage percentage in BPS when autoSlippage is enabled.
autoSlippageCollisionUsdValuenumberNoNoneCustom USD value for slippage calculation when autoSlippage is enabled.

Example Request

json
{
    "method": "jup_Quote",
    "jsonrpc": "2.0",
    "id": 1,
    "params": {
        "inputMint": "So11111111111111111111111111111111111111112",
        "outputMint": "TokenMintAddress",
        "amount": 1000000,
        "slippageBps": 50,
        "swapMode": "ExactIn",
        "dexes": [
            "dexA",
            "dexB"
        ],
        "excludeDexes": [
            "dexC"
        ],
        "restrictIntermediateTokens": true,
        "onlyDirectRoutes": false,
        "asLegacyTransaction": false,
        "platformFeeBps": 20,
        "maxAccounts": 10,
        "autoSlippage": true,
        "maxAutoSlippageBps": 100,
        "autoSlippageCollisionUsdValue": 10
    }
}

Response Interface: IGetSwapQuoteResponse

FieldTypeDescription
dataobjectThe main data object containing details of the swap quote.
data.inAmountnumberInput token amount in token units.
data.outAmountnumberOutput token amount in token units.
data.priceImpactPctnumberPercentage of price impact due to the swap.
data.marketInfosArray<object>Array of market information objects detailing swap routes.
data.marketInfos[].idstringUnique ID of the market.
data.marketInfos[].labelstringLabel of the market.
data.marketInfos[].inputMintstringMint address of the input token for this market.
data.marketInfos[].outputMintstringMint address of the output token for this market.
data.marketInfos[].notEnoughLiquiditybooleanIndicates if the market has insufficient liquidity.
data.marketInfos[].inAmountnumberInput amount for this market.
data.marketInfos[].outAmountnumberOutput amount for this market.
data.marketInfos[].priceImpactPctnumberPercentage of price impact for this market.
data.marketInfos[].lpFeeobjectDetails of liquidity provider fee.
data.marketInfos[].lpFee.amountnumberFee amount in token units.
data.marketInfos[].lpFee.mintstringMint address of the token for the fee.
data.marketInfos[].lpFee.pctnumberFee percentage in basis points.
data.marketInfos[].platformFeeobjectDetails of platform fee.
data.marketInfos[].platformFee.amountnumberFee amount in token units.
data.marketInfos[].platformFee.mintstringMint address of the token for the fee.
data.marketInfos[].platformFee.pctnumberFee percentage in basis points.
data.amountnumberTotal amount involved in the swap.
data.slippageBpsnumberSlippage in basis points applied to the quote.
data.otherAmountThresholdnumberThreshold amount for other conditions.
data.swapModestringMode of the swap (ExactIn or ExactOut).
data.feesobjectObject containing fee-related details.
data.fees.signatureFeenumberFee for the signature.
data.fees.openOrdersDepositsArray<object>List of deposits for open orders.
data.fees.openOrdersDeposits[].amountnumberAmount deposited for the order.
data.fees.openOrdersDeposits[].mintstringMint address of the deposited token.
data.fees.ataDepositsArray<object>List of deposits for associated token accounts.
data.fees.ataDeposits[].amountnumberAmount deposited for the ATA.
data.fees.ataDeposits[].mintstringMint address of the deposited token.
data.fees.totalFeeAndDepositsnumberTotal fees and deposits for the swap.
data.timeTakennumberTime taken to generate the quote in milliseconds.

Response Body

json
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "data": {
            "inAmount": 1000000,
            "outAmount": 950000,
            "priceImpactPct": 0.02,
            "marketInfos": [
                {
                    "id": "market_1",
                    "label": "DEX_A",
                    "inputMint": "TokenA_MintAddress",
                    "outputMint": "TokenB_MintAddress",
                    "notEnoughLiquidity": false,
                    "inAmount": 1000000,
                    "outAmount": 950000,
                    "priceImpactPct": 0.01,
                    "lpFee": {
                        "amount": 1000,
                        "mint": "TokenB_MintAddress",
                        "pct": 0.1
                    },
                    "platformFee": {
                        "amount": 500,
                        "mint": "TokenB_MintAddress",
                        "pct": 0.05
                    }
                }
            ],
            "amount": 1000000,
            "slippageBps": 50,
            "otherAmountThreshold": 940000,
            "swapMode": "ExactIn",
            "fees": {
                "signatureFee": 5000,
                "openOrdersDeposits": [
                    {
                        "amount": 100000,
                        "mint": "TokenA_MintAddress"
                    }
                ],
                "ataDeposits": [
                    {
                        "amount": 200000,
                        "mint": "TokenB_MintAddress"
                    }
                ],
                "totalFeeAndDeposits": 305000
            },
            "timeTaken": 125
        }
    }
}

The RPC Layer for the blockchain