Robinhood Chain API
Query Robinhood Chain like a database. Not a node.
Robinhood Chain — chain ID 4663 — produces a block every ~100ms. Don't run an Orbit node or page through an explorer to keep up with it. Bitquery has decoded real-time coverage on this chain — Stock Token transfers, Uniswap v4 trades, wallet balances, contract calls and events. The world's first chain built for tokenized stocks, one query — or one live stream — away.
subscription { EVM(network: robinhood) { DEXTrades( where: {Trade: {Buy: {Currency: {Symbol: {in: ["NVDA", "AAPL", "GOOG"]}}}}} ) { Trade { Buy { Price Amount Currency { Symbol Name } } Dex { ProtocolName } } Block { Time } } } }
subscription { EVM(network: robinhood) { DEXTrades( where: {Trade: {Buy: {Currency: {Symbol: {in: ["NVDA","AAPL"]}}}}} ) { Trade { Buy { Price Amount Currency { Symbol } } Dex { ProtocolName } } } } }
What is the Robinhood Chain API?
The Bitquery Robinhood Chain API is a GraphQL and streaming interface to indexed, decoded Robinhood Chain data. Robinhood Chain is an Arbitrum Orbit rollup with chain ID 4663 that settles to Ethereum, pays gas in ETH and produces a block about every 100 milliseconds. It carries 450+ Stock Tokens — tokenized US stocks and ETFs — trading against crypto on Uniswap v4, Uniswap v3, Pons and PancakeSwap. Bitquery decodes every trade, transfer, balance change, contract call and event on the chain into the same schema it uses for Ethereum, Arbitrum and Base, then serves it over GraphQL, WebSocket, Kafka and bulk export.
- Chain ID
- 4663 (hex 0x1237)
- Network name in queries
- network: robinhood
- Query endpoint
- graphql.bitquery.io
- Streaming endpoint
- streaming.bitquery.io
Network facts checked 7 September 2026 against chainlist.org/chain/4663. Protocol trade shares are measured on Bitquery's own index over 57.4 million trades between 3 and 7 September 2026. Longer-run findings are in our study of 63 million Robinhood Chain trades.
Robinhood Chain at a glance — chain ID 4663.
Robinhood Chain is an Arbitrum Orbit rollup that settles to Ethereum, runs the EVM, pays gas in ETH and produces a block roughly every 100ms. It is the first chain built around tokenized equities — 450+ Stock Tokens trading against crypto on Uniswap v4, Uniswap v3 and Pons.
Looking up a single address or transaction? Use the Robinhood Chain block explorer. Need the same data in bulk, as history, or as a live feed? That is what the API below is for — and our research team used it to analyse 63 million Robinhood Chain trades.
Why raw JSON-RPC cannot keep up with Robinhood Chain.
Robinhood Chain produces a block roughly every tenth of a second. Chasing that with eth_getLogs, hand-decoded Uniswap v4 hooks and explorer pagination is a full-time infrastructure job. Bitquery already did it.
Four ways to get Robinhood Chain data — one schema underneath.
Prototype over GraphQL, ship over WebSocket or Kafka, backfill your warehouse in bulk. Same decoded data on every channel.
Historical + real-time in one endpoint. Browser-ready subscriptions over WebSocket.
Browser-ready live streams over a single socket — built for tickers and dashboards.
The lowest-latency Robinhood Chain stream — guaranteed delivery for production trading pipelines. Protobuf or JSON topics.
Full-history datasets delivered to S3, Snowflake, BigQuery or Azure.
Which DEXs and protocols Bitquery decodes on Robinhood Chain.
Robinhood Chain launched with DeFi built in. Every protocol below is parsed into the same schema — and every new deployment gets added.
Which APIs have Robinhood Chain data — and what each one leaves out.
Plenty of services list chain 4663. Most of them carry prices and nothing else, which is fine until you need a wallet's history, a token's holders or a decoded event. Checked by hand on 7 September 2026.
Coverage on a young chain moves quickly, so verify against your own queries rather than a support matrix. Our own reasoning on that is in the honest guide to Robinhood Chain APIs, and the Robinhood Chain docs list every field we return.
Every Robinhood Chain dataset, one API key.
From tokenized-stock trades to the bridge, the full Robinhood Chain surface is one endpoint — no Orbit node, no archive sync, no custom indexer. Each dataset is available with archive add-ons or Enterprise, and streamable in real time over WebSocket or Kafka.
Stock Tokens API
Transfers, holders, supply and USD value for 450+ tokenized US stocks and ETFs — NVDA, AAPL, GOOG and more — including dividend token-multiplier events. Only on Robinhood Chain; only decoded here.
Explore docs →DeFiDEX Trades API
Uniswap v4 swaps with OHLCV candles, pairs, pools and per-wallet trade history — Stock Tokens and crypto alike.
Explore docs →TokensToken Transfers API
Every ERC-20, ERC-721 & ERC-1155 transfer with historical USD value, volumes and inflow / outflow per address.
Explore docs →WalletsBalance API
Real-time & historical ETH and token balances for any wallet — with USD portfolio value for trackers and tax tools.
Explore docs →TokensToken Holders API
Top holders, balance distribution and decentralization metrics — Gini and Nakamoto coefficients — for any token, including Stock Tokens.
Explore docs →ComplianceMoney Flow · Coinpath®
Trace inbound and outbound fund flows across Robinhood Chain addresses for AML, forensics and investigation workflows.
Explore docs →ContractsSmart Contract Trace API
Decoded call traces with arguments, internal transactions and success status — parsed by ABI.
Explore docs →ContractsSmart Contract Events API
Decoded event logs by ABI — query Transfer, Swap, Initialize or any topic by contract, name or signature.
Explore docs →Cross-chainBridge & Cross-Chain API
Canonical bridge deposits and withdrawals plus LayerZero flows — follow assets between Ethereum, Arbitrum and Robinhood Chain.
Explore docs →NetworkTransactions API
Transaction details, receipts, internal transactions, gas used and status — filter by sender, receiver or value.
Explore docs →NetworkBlocks API
Block headers, timestamps and gas usage at 100ms cadence — for time-series analytics and explorers.
Explore docs →NetworkGas & Fees API
L2 gas and fee analysis on the ETH-denominated gas token — power estimators and cost dashboards.
Explore docs →What builders ship on Robinhood Chain data.
Each one is a filter on the same indexed data — subscribe over WebSocket or Kafka for bots, or query GraphQL for dashboards.
Stream every tokenized-stock trade, live
Subscribe to Stock Token swaps the moment they land. Power tickers, alerts and 24/7 Stock Token dashboards — for markets that no longer close.
DEX trade subscriptions →subscription { EVM(network: robinhood) { DEXTrades( where: {Trade: {Dex: {ProtocolName: {is: "uniswap_v4"}}}} ) { Trade { Buy { Price Amount Currency { Symbol } } Sell { Currency { Symbol } } } Block { Time } } } }
On-chain OHLCV for NVDA — at 3am on a Sunday
Candlestick data for any Stock Token or crypto pair at 1m / 5m / 1h intervals, built from decoded Uniswap v4 trades. Chart tokenized stocks around the clock.
OHLCV & price APIs →query { EVM(network: robinhood) { DEXTradeByTokens( where: {Trade: {Currency: {Symbol: {is: "NVDA"}}}} ) { Block { Time(interval: {count: 5, in: minutes}) } open: Price(minimum: Block_Time) high: quantile(of: Price, level: 1) low: quantile(of: Price, level: 0) close: Price(maximum: Block_Time) volume: sum(of: Trade_Amount) } } }
Wallet portfolio & PnL — Stock Tokens and crypto together
One query returns a wallet's ETH, token and Stock Token balances with USD values; transfer and trade history gives you realized PnL. The backbone of trackers and tax tools.
Balance & portfolio APIs →query { EVM(network: robinhood) { BalanceUpdates( where: {BalanceUpdate: {Address: {is: "0xA1b2…c3D4"}}} ) { Currency { Symbol Name } balance: sum(of: BalanceUpdate_Amount) value: sum(of: BalanceUpdate_AmountInUSD) } } }
Catch new pools & token listings first
Stream Uniswap v4 pool initializations and new Stock Token deployments the block they happen. Snipe listings, seed liquidity, update your app's token list automatically.
Events & contract APIs →subscription { EVM(network: robinhood) { Events( where: {Log: {Signature: {Name: {is: "Initialize"}}}} ) { Log { Signature { Name } } Transaction { Hash } Block { Number Time } } } }
Who relies on Bitquery for on-chain data.
“We did a thorough search of the market for the best onchain data. Bitquery came out on top — and now powers all live prices across Nansen.”
Pricing
Start free. Scale when your users do.
Every self-service plan includes Robinhood Chain with the other 8 core real-time chains — one key, one schema. Save 20% with annual billing.
Personal
For side projects, learning & testing. Personal use only — no commercial use.
billed annually ($468/yr) · save 20%
- 100k API points / mo ≈ 20k calls
- 30 req/min · 3 simultaneous
- Full GraphQL & REST schema
- Real-time data · 9 core chains 30-day trades · 4–8h on-chain
- API only — no streams
- Community support
Pro
For trading bots, alerts & dashboards on live DEX and price data.
billed annually ($948/yr) · save 20%
- 1M API points / mo ≈ 200k calls
- 90 req/min · 6 simultaneous
- 100k stream-minutes + 5 GB
- 100 concurrent streams
- Trading-data streams live DEX & prices
- Commercial-use license
- Real-time data · 9 core chains 30-day trades · 4–8h on-chain
- Community + Telegram support
Scale
For production real-time apps — every stream, scale on demand.
billed annually ($2,868/yr) · save 20%
- 5M API points / mo ≈ 1M calls
- 240 req/min · 12 simultaneous
- 2M stream-minutes + 50 GB
- 1,000 concurrent streams
- All streams onchain + mempool
- Commercial-use license
- Dedicated Slack support
Enterprise
Full history, unlimited streams & bulk delivery at scale.
flat platform fee — no metering
- Complete history · 40+ chains
- Unlimited WebSocket streaming no stream-min or GB limit
- Custom points & rate limits
- Kafka fixed-cost · S3 bulk export
- Coinpath® money flow
- SLA · SSO · dedicated support
Flat-rate add-ons on every open plan: $40 / 1M points · $40 / 200k stream-minutes · $40 / 5 GB (bought yearly · save 20%) — billed only for what you add, with volume packs that cut the rate as you scale.
Historical data is sold separately: self-service plans are real-time only. Per-chain archive packs start at $100/mo ($70/mo billed yearly); transfers, balances & holders are $150/mo ($120/mo yearly) on most chains. See historical add-ons →
Robinhood Chain API — common questions.
What is Robinhood Chain's chain ID?
Is there a Robinhood Chain block explorer?
Do I need a Robinhood Chain RPC endpoint?
What is Robinhood Chain's block time?
Is Robinhood Chain EVM compatible?
Which DEXs and DeFi protocols run on Robinhood Chain?
How do I get Robinhood Chain data with Bitquery?
Can I query tokenized stock (Stock Token) trades and transfers?
Does Bitquery stream Robinhood Chain data in real time?
Is Robinhood Chain in the same schema as Ethereum and Arbitrum?
Can I get wallet balances, portfolio value and PnL?
Is this the Robinhood brokerage or stock trading API?
Which APIs have Robinhood Chain (chain ID 4663) data?
What is Robinhood Chain's network name in the Bitquery API?
Ship your Robinhood product this week.
7-day free trial — real-time Robinhood data on self-service plans, no node to run. Live window: 30-day trades · 4–8h on-chain; deepen history with archive add-ons, or go Enterprise for complete history.
Stock Tokens are tokenized derivative instruments issued on Robinhood Chain — not equities. Bitquery provides blockchain data, not brokerage services. Robinhood Chain and related names are referenced for identification only.