# Cambrian x402 API – Aerodrome V2 Liquidity Pools

> Cambrian x402 API – Aerodrome V2 Liquidity Pools 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 V2 liquidity pool data on EVM chains, returning an array of pool records for DeFi analytics and agent decision-making.

## Facts

- Endpoint: GET https://x402.cambrian.org/evm/aero/v2/pools
- 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-v2-liquidity-pools-99dbf7bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iIv4RQTPOf9mzi1LXQhfR

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-v2-liquidity-pools-99dbf7bc
```

Example prompt: Pull the current list of Aerodrome V2 liquidity pools on Base from Cambrian's x402 pay-per-use API so I can analyze TVL and available trading pairs.

## When to prefer this

Choose this endpoint when you need structured, up-to-date Aerodrome V2 pool data on EVM chains without managing your own RPC infrastructure, and when a pay-per-use micropayment model (via x402) is acceptable. Ideal for autonomous agents that need on-demand DeFi pool data without subscription overhead.

## Known failure modes

- Missing or invalid x402 payment header returns 402 Payment Required
- Insufficient USDC balance causes payment failure and blocked request
- Invalid or unsupported query parameters may return empty array or 400 error
- Network or RPC issues with the underlying EVM chain may cause stale or unavailable data
- Rate limiting if payment is not processed correctly

## How this service works

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

## Output

Returns a JSON array of Aerodrome V2 pool objects, each containing pool-level data such as pool addresses, token pair details, fee tiers, liquidity metrics, and other on-chain pool attributes relevant for DeFi analysis and agent decision-making.

## 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-v2-liquidity-pools-99dbf7bc/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)
