# Robinhood Chain Tokenized Stock/ETF On-Chain Lookup

> Robinhood Chain Tokenized Stock/ETF On-Chain Lookup is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns live on-chain data for a tokenized stock or ETF on Robinhood Chain by ticker symbol, including ERC-20 metadata, oracle price in USD, and staleness flag.

## Facts

- Endpoint: POST https://x402.forgemesh.io/robinhood-token-lookup
- Price: $0.003/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-etf-on-chain-lookup-f9447c01
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zFZxhjihOcqZZV6Pz7kWa

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-etf-on-chain-lookup-f9447c01 -d '<json body>'
```

Example prompt: Can you pull the live on-chain data for the tokenized NVDA stock on Robinhood Chain — I want the current oracle price in USD, total supply, and whether the price feed is stale?

## When to prefer this

Use this endpoint when you need live, publicly verifiable on-chain data for tokenized stocks or ETFs specifically on Robinhood Chain — including ERC-20 metadata, oracle price feeds, and staleness signals. Prefer this over traditional market data APIs when the use case involves blockchain-native equity tokens, DeFi integrations, or on-chain price verification.

## Known failure modes

- Unknown or unsupported ticker symbol returns an error or empty result
- Oracle price data may be flagged as stale if not updated recently
- Token not yet deployed on Robinhood Chain returns no data
- Network or RPC connectivity issues may delay or fail the response
- Malformed symbol input (e.g. special characters) may cause a validation error

## How this service works

Live on-chain report for a tokenized stock or ETF on Robinhood Chain by ticker symbol: ERC-20 name, decimals, total supply, current oracle price in USD with raw answer and update timestamp, staleness flag, and explorer link. Read-only public blockchain data with source citations — informational only, never investment advice.

## Output

Returns ERC-20 token name, decimals, total supply, current oracle price in USD (with raw answer and update timestamp), a staleness flag indicating if the price feed is outdated, and a block explorer link — all sourced from public Robinhood Chain blockchain data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Ticker symbol, e.g. AAPL, NVDA, SPY (case-insensitive)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "kind": "stock",
  "found": true,
  "price": {
   "usd": "328.93373112",
   "stale": false,
   "updated_at": "2026-07-16T00:37:55.000Z"
  },
  "token": {
   "address": "0xaF3D76f1834A1d425780943C99Ea8A608f8a93f9",
   "decimals": 18
  },
  "symbol": "AAPL"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinhood-chain-tokenized-stock-etf-on-chain-lookup-f9447c01/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
