quotes

Get quotes from Jupiter by specifying required parameters.

Request

Method:

GET ./api/v2/jupiter/quotes

Parameters:

Parameter
Type
Description

inToken

string

Symbol of the swap-in token.

outToken

string

Symbol of the swap-out token.

inAmount

double

The amount of token wanted to be swapped from.

slippage

double

The maximum slippage tolerance in percentage.

fastMode

boolean

OPTIONAL. Lower latency option that excludes Raydium Pools.

Request example:

curl --header "Authorization: $AUTH_HEADER" \
"https://ny.solana.dex.blxrbdn.com/api/v2/jupiter/quotes?inToken=SOL&outToken=USDC&inAmount=0.1&slippage=0.1",

Response:

Fields:

Field
Type
Description

inToken

string

Symbol of the swap-in token.

inTokenAddress

string

The program address for the swap-in token.

outToken

string

Symbol of the swap-out token.

outTokenAddress

string

The program address for the swap-out token.

inAmount

double

The amount of token wanted to be swapped from.

quotes

[] ProjectQuote

See ProjectQuote below for details.

ProjectQuote

Field
Type
Description

project

string

Symbol of the swap-in token.

routes

[]QuoteRoute

See QuoteRoute below for details.

QuoteRoute

Field
Type
Description

inAmount

double

Number of the swap-in token.

outAmount

double

Number of the swap-out token.

steps

[]QuoteStep

See QuoteStep below for details.

QuoteStep

Field
Type
Description

inToken

string

Symbol of the swap-in token for the current step.

inTokenAddress

string

The program address for the swap-in token for the current step.

outToken

string

Symbol of the swap-out token for the current step.

outTokenAddress

string

The program address for the swap-out token for the current step.

inAmount

double

Number of the swap-in token for the current step.

outAmount

double

Number of the swap-out token for the current step.

slippage

double

The maximum slippage tolerance in percentage.

priceImpact

PriceImpactPercent

"percent" Percentage impact on price. "infinity" Indicates possible infinity values: INF_NOT, INF_POSITIVE, INF_NEGATIVE. Usually INF_NOT.

fee

Fee

"amount" Amount paid to AMM project. "mint" Token currency the fee is paid in. "percent" Percentage of the swap consumed by the fee.

PriceImpactPercent

Field
Type
Description

percent

number

Percentage impact on price.

infinity

string

Indicates possible infinity values: INF_NOT, INF_POSITIVE, INF_NEGATIVE. Usually INF_NOT.

Fee

Field
Type
Description

amount

number

Amount paid to AMM project

mint

string

Token currency the fee is paid in

percent

number

Percentage of the swap consumed by the fee

Response Example:

{
    "inToken": "SOL",
    "inTokenAddress": "So11111111111111111111111111111111111111112",
    "outToken": "USDC",
    "outTokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "inAmount": 0.1,
    "quotes": [
        {
            "routes": [
                {
                    "inAmount": 0.1,
                    "outAmount": 5.843859,
                    "steps": [
                        {
                            "project": {
                                "label": "Raydium",
                                "id": ""
                            },
                            "inToken": "SOL",
                            "inTokenAddress": "So11111111111111111111111111111111111111112",
                            "outToken": "",
                            "outTokenAddress": "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
                            "inAmount": 0.1,
                            "outAmount": 3.328617,
                            "slippage": 0.1,
                            "priceImpactPercent": {
                                "percent": 9.899955638899446e-7,
                                "infinity": "INF_NOT"
                            },
                            "fee": {
                                "amount": 0.00025,
                                "mint": "",
                                "percent": 0
                            }
                        }
                    ]
                }
            ]
        }
    ]
}