curl --request GET \
--url https://de.raze.sh/v3/sol/quote/{mint} \
--header 'X-API-Key: <api-key>'{
"success": true,
"quote": {
"mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
"avgPrice": 1.2453e-8,
"hops": 1,
"quoteResponse": {}
}
}Get the current price quote for a token.
Pass inputMint to quote a non-SOL input route (e.g. USDC → token).
The returned quoteResponse can be passed directly to buy/sell to skip a second server-side fetch.
curl --request GET \
--url https://de.raze.sh/v3/sol/quote/{mint} \
--header 'X-API-Key: <api-key>'{
"success": true,
"quote": {
"mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
"avgPrice": 1.2453e-8,
"hops": 1,
"quoteResponse": {}
}
}Token mint address
Input token mint for non-SOL routes. Omit for SOL → token quotes.