# Token Daily Price History (OHLCV)

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

Returns daily OHLCV (open, high, low, close, volume) price history for a specified token

## Facts

- Endpoint: GET https://origin-mcp.fly.dev/mcp/tools/token_price_history
- Price: $0.002/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-79e405a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0tVc3IBH4oARDEsljW4pZ

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-79e405a2
```

Example prompt: Can you pull the daily OHLCV price history for the AERO token on Base — I want to see open, high, low, close, and volume going back 90 days?

## When to prefer this

Use this endpoint when you need structured daily OHLCV candlestick data for a specific token, particularly tokens on the Base network, for charting, backtesting, or price trend analysis. Prefer this over real-time price endpoints when historical context or multi-day price series is needed.

## Known failure modes

- Token address not found or unsupported — returns empty or error response
- Invalid or unrecognized token symbol — no data returned
- Date range out of bounds or no historical data available for that period
- Network/chain mismatch — token exists on different chain than queried
- Payment failure — x402 micropayment of $0.002 USDC not completed

## How this service works

Get daily price history (OHLCV) for a token

## Output

A time series of daily OHLCV candlestick records for the queried token, including open, high, low, close prices and trading volume for each day in the requested range.

## 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-79e405a2/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)
