# Cambrian x402 API – Aave v3 Lending Pools

> Cambrian x402 API – Aave v3 Lending 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-13).

Returns a list of Aave v3 lending pool data across EVM chains, including pool addresses, assets, rates, and liquidity metrics.

## Facts

- Endpoint: GET https://x402.cambrian.org/evm/lending/aave/v3/pools
- 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-api-aave-v3-lending-pools-1c6e7c37
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cMCcU6m9-rC2POUu56dZZ

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-aave-v3-lending-pools-1c6e7c37
```

Example prompt: Pull all the current Aave v3 lending pools from Cambrian's blockchain data API so I can see which assets are available to borrow and supply, along with their rates.

## When to prefer this

Choose this endpoint when you need on-demand, pay-per-use Aave v3 lending pool data without managing your own indexer or RPC node. Ideal for autonomous agents that need current pool state for DeFi decision-making, rate comparison, or liquidity analysis on EVM chains. Prefer this over self-hosted solutions or heavier analytics APIs when low-cost, per-call access to structured Aave data is sufficient.

## Known failure modes

- Payment failure (402): USDC payment of $0.05 not completed or invalid — no data returned
- Invalid query parameters: unsupported filter fields may return empty array or error
- Chain not supported: querying for a non-EVM or unlisted chain returns no results
- Rate limiting or service downtime: provider-side availability issues
- Empty result set: no pools match the specified filters

## How this service works

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

## Output

Returns an array of Aave v3 lending pool objects, each containing pool identifiers, supported asset details, current supply and borrow interest rates, total liquidity, and other pool-level metrics across EVM-compatible chains.

## 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-aave-v3-lending-pools-1c6e7c37/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)
