# EZ-Path DEX Aggregator Quote

> EZ-Path DEX Aggregator Quote is a paid API for AI agents from api.myezverse.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Races 10 DEX venues simultaneously and returns the best (highest buyAmount) swap quote for a given token pair and sell amount

## Facts

- Endpoint: GET https://api.myezverse.xyz/api/v1/quote
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ez-path-dex-aggregator-quote-5548d456
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5BhGDjhB9y8T3YbktBoXu

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 ez-path-dex-aggregator-quote-5548d456
```

Example prompt: What's the best price I can get for swapping 1000000000000000000 wei of WETH into USDC right now — check across all the major DEXes and give me the highest buyAmount.

## When to prefer this

Choose this endpoint when you need to find the best possible swap rate for an ERC-20 token pair without executing a trade — especially when you want a single call that fans out to 10 major DEX venues (including CoW, Curve, Aerodrome, and Synthetix) rather than querying each separately. Prefer it over single-venue quotes whenever maximizing buyAmount matters.

## Known failure modes

- Missing required query params (sellToken, buyToken, sellAmount) returns 400
- Invalid token addresses return an error or empty result
- Illiquid pair with no quotes available across all 10 venues
- Payment not provided or insufficient (x402 payment required at $0.03 USDC per call)
- Network congestion or venue API timeouts may delay or degrade results

## How this service works

EZ-Path DEX Quote — races 10 venues (0x, ParaSwap, Aerodrome, Uniswap V3, Curve, Balancer, Uniswap V2, 1Inch, CoW, Synthetix) and returns the highest buyAmount

## Output

Returns the best swap quote found across 10 DEX venues, including buyAmount, sellAmount, price ratio, estimatedGas, and a breakdown of which liquidity sources (and their proportions) contributed to the route.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "sellToken",
      "buyToken",
      "sellAmount"
     ],
     "properties": {
      "buyToken": {
       "type": "string"
      },
      "sellToken": {
       "type": "string"
      },
      "sellAmount": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "price": {
       "type": "string"
      },
      "sources": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "name",
         "proportion"
        ],
        "properties": {
         "name": {
          "type": "string"
         },
         "proportion": {
          "type": "string"
         }
        }
       }
      },
      "buyToken": {
       "type": "string"
      },
      "buyAmount": {
       "type": "string"
      },
      "sellToken": {
       "type": "string"
      },
      "sellAmount": {
       "type": "string"
      },
      "estimatedGas": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ez-path-dex-aggregator-quote-5548d456/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.myezverse.xyz](https://www.zero.xyz/host/api.myezverse.xyz/llms.txt)
