Solana Tracker

Rate Endpoint

The Rate endpoint provides price quotes and conversion information for token swaps without executing the transaction.

Endpoint Details

  • Method: GET
  • URL: https://swap-v2.solanatracker.io/rate
  • Content Type: application/json

Example Request

curl --location 'https://swap-v2.solanatracker.io/rate?from=So11111111111111111111111111111111111111112&to=4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R&amount=1&slippage=10'

Request Parameters

ParameterTypeRequiredDescription
fromstringYesThe base token address (e.g., SOL: So11111111111111111111111111111111111111112)
tostringYesThe quote token address (e.g., RAY: 4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R)
amountnumberYesThe amount of the base token to convert
slippagenumberYesThe maximum acceptable slippage percentage (e.g., 10 for 10%)

The amount parameter should be provided in the token's native units, not in lamports or smallest units.

Response Structure

{
  "amountIn": 1,
  "amountOut": 9181.330823048,
  "minAmountOut": 9089.517514818,
  "currentPrice": 9181.330823048,
  "executionPrice": 9089.517514818,
  "priceImpact": 0.0334641736518774,
  "fee": 0.01,
  "baseCurrency": {
    "decimals": 9,
    "mint": "So11111111111111111111111111111111111111112"
  },
  "quoteCurrency": {
    "decimals": 9,
    "mint": "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R"
  },
  "platformFee": 9000000,
  "platformFeeUI": 0.009
}

Response Fields

FieldTypeDescription
amountInnumberThe amount of the source token used for the conversion
amountOutnumberThe amount of the destination token that would be received
minAmountOutnumberThe minimum amount of the destination token after applying slippage
currentPricenumberThe current market price for the token pair
executionPricenumberThe actual price at which the trade would be executed
priceImpactnumberThe difference between market price and execution price as a fraction (0.01 = 1%)
feenumberThe trading fee charged for the transaction
baseCurrencyobjectInformation about the source token (decimals and mint address)
quoteCurrencyobjectInformation about the destination token (decimals and mint address)
platformFeenumberThe fee charged by the platform in lamports (SOL's smallest unit)
platformFeeUInumberThe platform fee in SOL

The priceImpact field indicates how much the trade affects the market price. Higher values indicate less liquidity and potentially unfavorable trading conditions.

On this page