# Suverse Base DEX Swap Quote (LiFi Aggregator)

> Suverse Base DEX Swap Quote (LiFi Aggregator) is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns a swap quote for bidirectional ERC20 token swaps on Base mainnet, routing across 20+ DEXs via LiFi aggregation with a 1% fee.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/swap/base/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/suverse-base-dex-swap-quote-lifi-aggregator-3f65ffdd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PC01e6WDYuIh6jNZ5lmLF

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 suverse-base-dex-swap-quote-lifi-aggregator-3f65ffdd -d '<json body>'
```

Example prompt: Get me a swap quote for 500 USDC to WETH on Base mainnet — route through the best available DEX using LiFi aggregation and show me the expected output amount and route.

## When to prefer this

Use this endpoint when you need to swap ERC20 tokens on Base mainnet and want aggregated routing across 20+ DEXs for best price. Ideal for AI agents executing DeFi swaps programmatically with USDC, WETH, AERO, DEGEN, BRETT, TOSHI, cbETH, cbBTC, or any Base ERC20. The two-step quote/execute flow means this is the first step — always follow with the execute endpoint. Prefer this over single-DEX endpoints when best-price routing matters.

## Known failure modes

- Insufficient liquidity for the requested token pair — returns an error with no route found
- Invalid or unsupported token address — returns validation error
- Amount too small to route efficiently — may return no viable route
- Network congestion causing stale quotes — quote may expire before execution
- Malformed request body — returns 400 with schema validation error
- Payment not included or insufficient — returns 402 Payment Required

## How this service works

Bidirectional ERC20 token swap aggregator on Base mainnet via LiFi routing across 20+ DEXs (Uniswap V3, Aerodrome, BaseSwap, SushiSwap). USDC to WETH AERO DEGEN BRETT TOSHI cbETH cbBTC or any ERC20, and reverse to USDC. Two-step quote/execute x402 flow. 1% fee. AI agent swap. L2 DEX.

## Output

Returns a swap quote including the best aggregated route across 20+ Base DEXs (Uniswap V3, Aerodrome, BaseSwap, SushiSwap), expected output token amount, exchange rate, 1% fee breakdown, and transaction calldata needed for the subsequent execute step.

## 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/suverse-base-dex-swap-quote-lifi-aggregator-3f65ffdd/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)
