# Solana DEX Swap Quote (Jupiter/Meteora)

> Solana DEX Swap Quote (Jupiter/Meteora) is a paid API for AI agents from api.vibe.airforce, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a swap quote for a Solana token pair from Jupiter or Meteora DEX aggregators, given an input/output mint and amount.

## Facts

- Endpoint: POST https://api.vibe.airforce/api/x402/vibe-tools/swap-quote
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-vibe-airforce-5b77340f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xVU3q-rEqZLaCuvfHOidX

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 api-vibe-airforce-5b77340f -d '<json body>'
```

Example prompt: Get me a swap quote on vibe.airforce using Jupiter for converting 500000000 lamports of SOL (So11111111111111111111111111111111111111112) to USDC (EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v) with 50 basis points slippage tolerance.

## When to prefer this

Use this endpoint when you need a pre-trade price estimate for Solana SPL token swaps via Jupiter or Meteora before executing a transaction. Prefer this over generic price feeds when you need route-aware quotes with slippage modeling for on-chain DEX execution on Solana.

## Known failure modes

- Invalid mint address returns an error or empty quote
- Unsupported token pair with no liquidity returns no route found
- Amount too small or too large for available liquidity
- Invalid preferred_aggregator value returns error
- Network congestion may cause stale or unavailable quotes
- Missing required fields (input_mint, output_mint, amount) returns 400 error

## How this service works

Top Picks: AI-verified smart money tokens every 30 min. 6-dimension scores, one-sentence thesis, smart money flow data. Plus 50+ crypto-data endpoints via x402 USDC on Base. No API keys, no accounts.

## Output

A DEX swap quote including the expected output token amount, price impact, routing path, and slippage details for the requested Solana token pair and amount, sourced from Jupiter or Meteora.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "amount",
  "input_mint",
  "output_mint"
 ],
 "properties": {
  "amount": {
   "type": "integer",
   "description": "Amount in smallest unit (lamports)"
  },
  "input_mint": {
   "type": "string",
   "description": "Input token mint address"
  },
  "output_mint": {
   "type": "string",
   "description": "Output token mint address"
  },
  "slippage_bps": {
   "type": "integer",
   "description": "Slippage tolerance in basis points"
  },
  "preferred_aggregator": {
   "type": "string",
   "description": "Preferred DEX: 'jupiter' or 'meteora'"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "description": "Solana DEX swap quote with route, price impact, and expected output"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-vibe-airforce-5b77340f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.vibe.airforce](https://www.zero.xyz/host/api.vibe.airforce/llms.txt)
