# Robinhood Chain Tokenized Stock Dislocation Monitor

> Robinhood Chain Tokenized Stock Dislocation 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).

Detects price dislocation between Robinhood Chain tokenized-stock tokens and their real underlying equity, returning whether the token trades at a premium or discount beyond a configurable threshold.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/rh/dislocation
- 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-tokenized-stock-dislocation-monitor-7d618552
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-nicz_WxJeK9X5r1naIPH

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-tokenized-stock-dislocation-monitor-7d618552 -d '<json body>'
```

Example prompt: Check if the Robinhood Chain tokenized NVDA stock is dislocated from the real NASDAQ price right now — flag it if the gap is more than 1%.

## When to prefer this

Use this endpoint when you need to compare a Robinhood Chain tokenized stock's onchain price against its real underlying equity value to detect arbitrage opportunities or verify fair pricing before executing a trade. It is purpose-built for the Robinhood Chain tokenized-stock ecosystem and understands the specific oracle and token structures used there, unlike generic token-price endpoints that have no concept of equity peg deviation.

## Known failure modes

- Unknown ticker returns a 400 or empty result if the token is not listed on Robinhood Chain
- Stale oracle data may cause dislocation readings that don't reflect true real-time equity prices
- Payment failure (402) if stablecoin balance is insufficient
- Market hours edge cases — real equity price may be from last close when markets are shut, inflating apparent dislocation
- Network or Railway hosting downtime causing 5xx errors

## How this service works

Tokenized-stock rich/cheap signal on Robinhood Chain: compares the onchain DEX token price vs the real equity's last close vs the Lighter perp mark, with each pairwise spread % and a directional NAV-convergence verdict. Send { ticker, threshold? }. The tokenized-stock basis trade in one call — is the onchain token trading rich or cheap vs the real 

## Output

Returns the current price of the Robinhood Chain tokenized stock token versus the real underlying equity price, the percentage dislocation, whether it falls inside or outside the configured fair-value band, and a premium/discount directional signal indicating whether the token is expensive or cheap relative to the real share.

## 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-tokenized-stock-dislocation-monitor-7d618552/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)
