# forge-x402 Solana DEX Quote (Jupiter Route)

> forge-x402 Solana DEX Quote (Jupiter Route) is a paid API for AI agents from 8000-bidqe1mpvdcfa3r7.splox.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns a live Jupiter-aggregated DEX swap quote for a Solana token pair, including output amount, price impact, and route plan length, paid per-call via x402 USDC.

## Facts

- Endpoint: POST https://8000-bidqe1mpvdcfa3r7.splox.app/api/v1/solana/quote
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forge-x402-solana-dex-quote-jupiter-route-cdb209eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FYHf9qBaON93EWAz6tGcy

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 forge-x402-solana-dex-quote-jupiter-route-cdb209eb -d '<json body>'
```

Example prompt: Get me a live Jupiter swap quote to trade 1 SOL (mint So11111111111111111111111111111111111111112) for USDC (mint EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v) with 50 bps slippage — show me the output amount and price impact.

## When to prefer this

Choose this endpoint when you need a real-time, Jupiter-aggregated DEX swap quote on Solana without managing API keys — ideal for trading agents that want pay-per-call pricing via x402 USDC and need route quality signals (hops, price impact) alongside the output amount before deciding to execute a swap.

## Known failure modes

- Invalid or non-existent mint address returns an error or empty route
- Insufficient on-chain liquidity may return a very high price impact or no route found
- Payment failure via x402 (insufficient USDC balance) blocks the request
- Extremely large input amounts may yield degraded routes or high slippage
- Network congestion on Solana may cause stale or delayed quotes

## How this service works

Live Solana DEX data for trading agents: Jupiter route quality, venue spreads in bps, liquidity snapshots, new pairs, trending tokens. Pay per call via x402 with USDC on Base or Solana. No API keys.

## Output

Returns a JSON object with the timestamp, input/output mint addresses, input/output amounts in raw units, slippage bps applied, number of route hops (routePlanLen), and price impact percentage. No execution occurs — this is a read-only quote.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "amount": {
   "type": "string",
   "description": "Input amount in raw units"
  },
  "inMint": {
   "type": "string",
   "description": "Input token mint"
  },
  "outMint": {
   "type": "string",
   "description": "Output token mint"
  },
  "slippageBps": {
   "type": "string",
   "description": "Slippage tolerance, basis points"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "at": "2026-09-01T00:00:00.000Z",
 "inMint": "So11111111111111111111111111111111111111112",
 "outMint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
 "inAmount": "100000000",
 "outAmount": "10391592",
 "slippageBps": 50,
 "routePlanLen": 1,
 "priceImpactPct": "0"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forge-x402-solana-dex-quote-jupiter-route-cdb209eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 8000-bidqe1mpvdcfa3r7.splox.app](https://www.zero.xyz/host/8000-bidqe1mpvdcfa3r7.splox.app/llms.txt)
