Bidirectional SPL token swap aggregator on Solana mainnet via Jupiter v6 routing across 30
Bidirectional SPL token swap aggregator on Solana mainnet via Jupiter v6 routing across 30+ DEXs (Raydium, Orca, Meteora, Phoenix). USDC to BONK WIF POPCAT JUP RAY ORCA SOL MEW BOME or any SPL, and reverse to USDC. Two-step quote/execute x402 flow. 1% fee. AI agent swap. memecoin DEX.
1000 (raw units)
price
241
calls / 30d
2
unique payers
2026-09-18
updated
Provider
proxy.suverse.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "HFYkH6SUuXLvzGbuB76vJ8u76NG3X25wdd1A7mDM4cSw",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"input_amount": "1000000",
"input_mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"output_mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
"slippage_bps": 100
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"direction": "forward",
"expected_output": "5977180021",
"expected_output_human": "59771.80021 BONK",
"expires_at": "2026-06-02T00:00:00.000Z",
"fee": "10000",
"fee_human": "0.01 USDC",
"input_amount": "1000000",
"input_amount_human": "1 USDC",
"input_token": {
"decimals": 6,
"mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"name": "USD Coin",
"symbol": "USDC"
},
"output_token": {
"decimals": 5,
"logoURI": "https://arweave.net/bonk-logo",
"mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
"name": "Bonk",
"symbol": "BONK"
},
"price_impact_pct": 0.026,
"quote_id": "q_abc123def456",
"requires_approval": false,
"service": "suverse-solana-swap",
"tool": "jupiter",
"total_cost": "1010000",
"total_cost_human": "1.01 USDC",
"x402_pay_url": "https://proxy.suverse.io/v1/swap/solana/execute/q_abc123def456"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {}
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://proxy.suverse.io/v1/swap/solana/quote" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://proxy.suverse.io/v1/swap/solana/quote");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://proxy.suverse.io/v1/swap/solana/quote")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6054.json, and this resource appears in /discovery/resources and /discovery/search.