# Robinhood Chain Tokenized Stock Quote

> Robinhood Chain Tokenized Stock Quote is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-16).

Returns the on-chain token address, live price, liquidity, 24h volume, and premium/discount vs real-world share price for a given stock ticker on Robinhood's L2 blockchain.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/rh/stock
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-chain-tokenized-stock-quote-751ca741
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oq_vxFuW7PIlUVKJuggrD

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-quote-751ca741 -d '<json body>'
```

Example prompt: What's the current on-chain price and liquidity for tokenized NVDA on Robinhood Chain, and is it trading at a premium or discount to the real share price?

## When to prefer this

Use this endpoint when an agent needs real-time price, liquidity, or volume data specifically for tokenized equities on Robinhood's L2 blockchain, especially for 24/7 trading workflows where traditional market hours don't apply. Prefer this over generic DEX price endpoints when the asset is a tokenized stock or ETF and scam-token filtering is important.

## Known failure modes

- Ticker not found or not listed on Robinhood Chain — returns error or empty result
- Invalid ticker symbol format — validation error
- Liquidity data temporarily unavailable — partial response or error
- Payment not received / x402 payment failure — request rejected
- Network or Railway deployment downtime — service unavailable

## How this service works

Robinhood Chain tokenized-stock quote: pass a stock ticker (NVDA, AAPL, TSLA...) and get its canonical on-chain token on Robinhood's L2 with live price, liquidity, 24h volume, and premium/discount vs the real-world share price. Scam-token filtered. Send { ticker }. The price feed for agents trading tokenized equities 24/7.

## Output

Returns the canonical on-chain token for the requested ticker on Robinhood's L2, including live token price, available liquidity, 24-hour trading volume, and the premium or discount relative to the real-world share price. Scam tokens are filtered out so only the legitimate tokenized equity is returned.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ticker"
 ],
 "properties": {
  "ticker": {
   "type": "string",
   "description": "Stock/ETF ticker, e.g. NVDA, AAPL, TSLA, SPY"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinhood-chain-tokenized-stock-quote-751ca741/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)
