# Robinhood Chain Oracle Deviation Monitor

> Robinhood Chain Oracle Deviation Monitor is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns the current deviation between a tokenized stock/ETF's on-chain oracle price and its real equity market price on Robinhood Chain

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/rh/oracle-deviation
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-chain-oracle-deviation-monitor-3fe1ed89
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_45yaLy5QaBc6vGuBCPvbI

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 robinhood-chain-oracle-deviation-monitor-3fe1ed89 -d '<json body>'
```

Example prompt: Check the Chainlink oracle deviation for NVDA on Robinhood Chain — I want to know how far the on-chain price is from the actual equity price right now.

## When to prefer this

Choose this endpoint when you need to verify that tokenized stock or ETF prices on Robinhood Chain accurately reflect their real-world equity counterparts, or when hunting for dislocation-based arbitrage opportunities. It is specifically designed for Robinhood Chain's tokenized equity ecosystem and Chainlink oracle feeds — not a generic crypto price feed or DEX price checker.

## Known failure modes

- Ticker not supported — no Chainlink feed exists for the requested symbol
- Real equity market is closed and reference price may be stale
- Oracle feed temporarily unavailable or delayed
- Invalid ticker format returns a validation error
- Payment failure or insufficient USDC balance blocks the call

## How this service works

Chainlink oracle health for a tokenized stock on Robinhood Chain: reads the live onchain Chainlink feed (latestRoundData) and compares it to the DEX spot and the real equity price, with staleness (age vs heartbeat) and deviation %. Send { ticker }. Catch stale or dislocated oracles before they trigger bad liquidations. Reads onchain via Robinhood C

## Output

Returns the oracle-reported price for the specified ticker from the Chainlink feed on Robinhood Chain alongside the real equity market price, the absolute and/or percentage deviation between them, and any dislocation signals indicating whether the oracle is meaningfully out of sync with the underlying asset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinhood-chain-oracle-deviation-monitor-3fe1ed89/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
