# Aerodrome Pool Daily OHLCV History

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

Returns daily OHLCV (open, high, low, close, volume) candlestick snapshots for a specific Aerodrome liquidity pool on Base

## Facts

- Endpoint: GET https://origin-mcp.fly.dev/mcp/tools/aerodrome_pool_history
- Price: $0.003/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-5b38b96c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UXQidh55Qs4uxoQDxI7t7

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-5b38b96c
```

Example prompt: Pull the daily OHLCV snapshots for the Aerodrome pool at 0x6c561B446416E1A00E8E93E221854d6eA4171372 on Base so I can chart how its price and volume have moved over the past 30 days.

## When to prefer this

Use this endpoint when you need historical daily OHLCV candlestick data specifically for an Aerodrome Finance liquidity pool on the Base network. Prefer this over the token daily price history endpoint when the unit of analysis is the pool itself (e.g. LP price, pool-specific volume) rather than an individual token. Choose this over the current pool state endpoint when you need time-series data rather than a point-in-time snapshot.

## Known failure modes

- Invalid or non-existent pool address returns an error or empty result
- Pool address belongs to a different protocol or network than Aerodrome on Base
- Date range out of bounds or pool too new to have historical data
- Rate limiting or payment failure due to missing or insufficient x402 payment header
- Malformed pool address format causes a validation error

## How this service works

Get daily OHLCV snapshots for an Aerodrome pool

## Output

An ordered series of daily OHLCV records for the specified Aerodrome pool, each containing open, high, low, close prices and trading volume for that day, enabling historical price analysis and charting of the pool's activity on Base.

## Example request

```json
{
 "days": 7,
 "poolAddress": "0x6c561B446416E1A00E8E93E221854d6eA4171372"
}
```

## 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-5b38b96c/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)
