# Robinhood Chain Gap Radar — Tokenized Stock Dislocation Scanner

> Robinhood Chain Gap Radar — Tokenized Stock Dislocation Scanner 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).

Scans tokenized stocks on Robinhood Chain for price gaps and dislocations relative to underlying equities, identifying top movers by gap magnitude

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/rh/gap-radar
- 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-gap-radar-tokenized-stock-dislocation-scanner-d8068702
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GsJ0jlUtjxbc9VmK8ZB_b

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-gap-radar-tokenized-stock-dislocation-scanner-d8068702 -d '<json body>'
```

Example prompt: Show me the top 15 tokenized stocks on Robinhood Chain with the biggest price gaps versus their real equity counterparts right now — scan AAPL, TSLA, NVDA, AMZN, and the rest of the usual basket.

## When to prefer this

Use this endpoint when you need real-time price dislocation or gap data specifically for tokenized stocks on Robinhood Chain, especially for arbitrage detection, catalyst monitoring, or ranking mispriced tokenized equities. Prefer this over generic price feeds when your goal is comparing tokenized vs. real equity prices in a ranked, actionable format.

## Known failure modes

- Invalid ticker symbols return empty or error results
- Limit exceeding 25 is capped or returns an error
- Market closed periods may show stale or zero gap data
- Payment failure via x402 protocol returns 402 with payment details
- Robinhood Chain oracle downtime may produce incomplete data

## How this service works

Overnight/weekend gap radar: while the US cash market is closed, ranks tokenized stocks by how far their 24/7 Robinhood Chain price has repriced vs the last regular-market close, with projected gap up/down at the open. Send { tickers?, limit? }. The pre-open positioning edge for tokenized-equity agents.

## Output

Returns a ranked list of tokenized stocks showing the gap or dislocation between their on-chain tokenized price on Robinhood Chain and the underlying real equity price, sorted by gap magnitude. Each entry includes ticker, gap percentage, tokenized price, reference equity price, and direction of dislocation (premium or discount).

## 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-gap-radar-tokenized-stock-dislocation-scanner-d8068702/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)
