# mpp.hyreagent.fun Token OHLCV

> mpp.hyreagent.fun Token OHLCV is a paid API for AI agents from mpp.hyreagent.fun, paid per call via x402, $0.020000/call, status unknown (last checked 2026-09-14).

Returns OHLCV (open/high/low/close/volume) candlestick price and trading activity data for a Base chain token over a specified time interval

## Facts

- Endpoint: POST https://mpp.hyreagent.fun/base/traders/token-ohlcv
- Price: $0.020000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mpp-hyreagent-fun-5855ccd4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5QqYwfER-ZgINceZP8QJ2

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 mpp-hyreagent-fun-5855ccd4 -d '<json body>'
```

Example prompt: Can you pull the last 50 hourly OHLCV candles for the Base token at address 0x4200000000000000000000000000000000000006 so I can see its recent price and volume activity?

## When to prefer this

Use this endpoint when you need structured OHLCV candlestick data for a specific token on the Base chain, particularly for charting, trend analysis, or monitoring price and volume activity over time. Prefer this over generic market data APIs when working with Base-native or long-tail tokens.

## Known failure modes

- Invalid or non-existent token address returns empty or error response
- Unsupported timeInterval string returns validation error
- Limit too large may result in timeout or truncated response
- Token not traded on Base returns no data
- Payment failure (insufficient USDC balance) returns 402

## How this service works

Token price + activity

## Output

A series of OHLCV candlestick records for the specified token on Base, each containing open, high, low, close prices and trading volume for the given time interval, up to the requested number of bars.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "limit",
  "timeInterval",
  "tokenAddress"
 ],
 "properties": {
  "limit": {
   "type": "number"
  },
  "timeInterval": {
   "type": "string"
  },
  "tokenAddress": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mpp-hyreagent-fun-5855ccd4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mpp.hyreagent.fun](https://www.zero.xyz/host/mpp.hyreagent.fun/llms.txt)
