# Origin MCP Token Price

> Origin MCP Token Price 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).

Fetches current price and market data for any token on the Base network

## Facts

- Endpoint: GET https://origin-mcp.fly.dev/mcp/tools/token_price
- 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-89d87db0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FsWpwreAx6TnIOtLjMdQc

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-89d87db0
```

Example prompt: What's the current price and market data for AERO (Aerodrome) on Base right now?

## When to prefer this

Use this endpoint when you need real-time price and market data specifically for tokens on the Base network. Prefer this over general price oracles when working within the Base/Coinbase ecosystem or when you need Base-specific market context. It is well-suited for agent workflows that involve DeFi decision-making, portfolio tracking, or arbitrage detection on Base.

## Known failure modes

- Token address not found on Base — returns error or empty result
- Token symbol is ambiguous or not recognized — may return wrong token data
- Network issues with Base RPC — may return stale or unavailable data
- Payment of 0.001 USDC not completed — 402 Payment Required response
- Invalid token contract address format — returns validation error

## How this service works

Get current price and market data for any token on Base

## Output

Returns current price in USD and key market data metrics for the requested Base token, including relevant market statistics at the time of the call.

## Example request

```json
{
 "address": "0x940181a94A35A4569E4529A3CDfB74e38FD98631"
}
```

## 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-89d87db0/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)
