# Robinhood Chain Tokenized Stock Spread & Dislocation Intelligence

> Robinhood Chain Tokenized Stock Spread & Dislocation Intelligence is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.005/call, status healthy (last checked 2026-09-15).

Returns real-time spread and dislocation analysis for a tokenized stock or ETF on Robinhood Chain versus the underlying equity, given a ticker and optional clip size and fee assumptions.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/rh/spread
- Price: $0.005/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-15
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-chain-tokenized-stock-spread-dislocation-intelligence-65837009
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T6LBZa66gwuNCw_VipI_Q

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-spread-dislocation-intelligence-65837009 -d '<json body>'
```

Example prompt: Check the spread and price dislocation for tokenized AAPL on Robinhood Chain for a $500 clip, assuming a 0.3% pool fee — I want to know if there's a gap versus the real equity right now.

## When to prefer this

Use this endpoint when you specifically need spread and dislocation analysis between a tokenized equity on Robinhood Chain and the underlying real-world stock or ETF. It is the right choice for arbitrage detection, pre-trade cost estimation, and monitoring price gaps in tokenized stock markets. Prefer this over generic DEX spread tools when the asset is a Robinhood Chain tokenized equity rather than a native crypto token.

## Known failure modes

- Unknown or unsupported ticker returns an error or empty result
- Ticker for a stock not listed on Robinhood Chain tokenized market may return no data
- Invalid feePct value (e.g. negative or extreme) may produce unreliable spread estimates
- Stale oracle data may cause dislocation metrics to lag real market conditions
- Network or upstream data feed outage may return 5xx errors

## How this service works

Effective round-trip execution cost for a tokenized stock right now: best executable buy vs best executable sell price for a small reference clip across all venues, and the resulting effective spread %, modeled with pool fee + constant-product impact. Send { ticker, clipUsd?, feePct? }. The cost-to-trade snapshot for execution agents.

## Output

Returns computed spread metrics and dislocation data for the specified tokenized stock ticker on Robinhood Chain, including the gap between the on-chain token price and the reference equity price, estimated execution cost for the given clip size, and pool-fee-adjusted spread figures. Useful for detecting arbitrage opportunities or estimating pre-trade costs.

## 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-spread-dislocation-intelligence-65837009/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)
