# Jupiter Best-Route Solana Swap Quote

> Jupiter Best-Route Solana Swap Quote is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns the best-route swap quote on Solana via Jupiter aggregator, including in/out amounts, minimum output at slippage, price impact, and route hops.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/swap-quote-jupiter
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jupiter-best-route-solana-swap-quote-b8f94443
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ov1yfksCLCf4pu9D5PtPt

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability jupiter-best-route-solana-swap-quote-b8f94443 -d '<json body>'
```

Example prompt: Get me a Jupiter swap quote to trade 1,000,000 lamports of SOL (So11111111111111111111111111111111111111112) for USDC (EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v) with a slippage of 50 basis points — show me the best route, expected output, and price impact.

## When to prefer this

Use this endpoint when you need a real-time best-route swap quote on Solana via the Jupiter aggregator without running your own node or Jupiter integration. Ideal for agents that need to check swap rates, price impact, and route details before executing a trade, or for DCA bots, arbitrage monitors, and DeFi dashboards that require low-latency Solana DEX data. Prefer this over raw DEX APIs when you want multi-hop route optimization across all major Solana liquidity sources.

## Known failure modes

- Invalid or non-existent mint address returns an error or empty route
- Amount of zero or negative value causes a validation error
- Extremely illiquid token pair may return no route or very high price impact
- Network or Jupiter API downtime returns a 5xx or timeout error
- Missing required fields (inputMint, outputMint, amount) returns a 400-level error

## How this service works

Jupiter best-route Solana swap quote: in/out amounts, min-out at slippage, price impact, route hops. Pass inputMint, outputMint, amount (smallest unit), optional slippageBps. Sourced from Jupiter lite-api aggregator.

## Output

Returns a structured quote object including: exact input and output token amounts, minimum output amount after applying the specified slippage tolerance, price impact percentage, and an ordered list of route hops (DEX pools/venues) used to achieve the best price on Solana.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jupiter-best-route-solana-swap-quote-b8f94443/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
