# Cambrian x402 SushiSwap V3 Pool Data

> Cambrian x402 SushiSwap V3 Pool Data is a paid API for AI agents from x402.cambrian.org, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Fetches on-chain SushiSwap V3 liquidity pool data for EVM chains via pay-per-use x402 micropayment

## Facts

- Endpoint: GET https://x402.cambrian.org/evm/sushi/v3/pool
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cambrian-x402-sushiswap-v3-pool-data-31a62f55
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lP6PgqNF5wyl2ocwNJNr3

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 cambrian-x402-sushiswap-v3-pool-data-31a62f55
```

Example prompt: What are the current SushiSwap V3 pool details for the USDC/WETH pair on Ethereum — give me the liquidity, price, and fee tier?

## When to prefer this

Choose this endpoint when you need real-time, on-chain SushiSwap V3 pool data for EVM chains and want pay-per-use micropayment pricing without an API key subscription. Prefer it over centralized DEX aggregator APIs when you need raw pool-level data (ticks, sqrtPrice, fee tiers) directly from on-chain state. Ideal for autonomous agents that need DeFi data on demand with minimal setup.

## Known failure modes

- Pool not found for given token pair or chain — returns empty array
- Invalid or unsupported chain identifier — may return error or empty result
- Payment failure via x402 protocol — 402 Payment Required if USDC not provided
- Malformed query parameters — may return 400 or empty array
- Pool exists but has zero liquidity — returns pool with zero liquidity field

## How this service works

Pay-per-use blockchain and social data for autonomous agents.

## Output

Returns an array of SushiSwap V3 pool records containing on-chain pool metadata such as pool address, token pair addresses, fee tier, tick spacing, current price (sqrtPriceX96), current tick, and liquidity figures for the queried EVM chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "additionalProperties": true
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "array"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "array"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cambrian-x402-sushiswap-v3-pool-data-31a62f55/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.cambrian.org](https://www.zero.xyz/host/x402.cambrian.org/llms.txt)
