# Aerodrome Pool Info

> Aerodrome Pool Info is a paid API for AI agents from origin-mcp.fly.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the current state of an Aerodrome DEX liquidity pool on Base, including reserves, TVL, and implied token price

## Facts

- Endpoint: GET https://origin-mcp.fly.dev/mcp/tools/aerodrome_pool_info
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/origin-mcp-fly-dev-12f351e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qf3faRmhiziKadwJ5UnSC

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 origin-mcp-fly-dev-12f351e7
```

Example prompt: What are the current reserves, TVL, and implied price for the USDC/WETH Aerodrome pool on Base? Give me the full pool state for that pair.

## When to prefer this

Use this endpoint when you need real-time Aerodrome pool state on Base — specifically reserves, TVL, and implied price — for a known pool address. Prefer this over the ranked pool list endpoint when you already know the pool address and need current state rather than rankings. Prefer over swap simulation when you need raw pool data rather than swap output estimates.

## Known failure modes

- Invalid or non-existent pool address returns error
- Pool address not on Base network returns not found
- Network congestion may cause stale or delayed data
- Malformed address format returns validation error

## How this service works

Get current Aerodrome pool state: reserves, TVL, implied price

## Output

Returns the current pool state including token reserves (amounts of each token in the pool), total value locked (TVL in USD), and the implied spot price derived from the reserve ratio.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/origin-mcp-fly-dev-12f351e7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from origin-mcp.fly.dev](https://www.zero.xyz/host/origin-mcp.fly.dev/llms.txt)
