# Cambrian x402 API – Aerodrome V3 Pool Lookup

> Cambrian x402 API – Aerodrome V3 Pool Lookup 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-14).

Fetches Aerodrome V3 liquidity pool data on EVM chains via a pay-per-use x402 endpoint.

## Facts

- Endpoint: GET https://x402.cambrian.org/evm/aero/v3/pool
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cambrian-x402-api-aerodrome-v3-pool-lookup-22d0ddf7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1-BPJBXsDKG2t-MwLkkzd

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-api-aerodrome-v3-pool-lookup-22d0ddf7
```

Example prompt: Pull the Aerodrome V3 pool data for the USDC/WETH pair on Base — I need the current liquidity, fee tier, and tick info.

## When to prefer this

Choose this endpoint when you need real-time Aerodrome V3 pool data on EVM chains (particularly Base) in a pay-per-use model without API key setup. Prefer it over self-hosted RPC calls when you want managed, metered access to Aerodrome DEX data with x402 micropayment billing.

## Known failure modes

- Payment not included or invalid x402 payment header returns 402 Payment Required
- Invalid or missing query parameters returns an empty array or 400 error
- Pool not found for given token pair returns empty array
- Chain or contract not supported returns an error
- Rate limiting or upstream RPC failure returns a 5xx error

## How this service works

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

## Output

Returns an array of Aerodrome V3 pool records containing pool state data such as liquidity, fee tier, tick data, token pair addresses, and current price information for the queried pool(s).

## 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-api-aerodrome-v3-pool-lookup-22d0ddf7/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)
