Robinhood ChainChain ID 4663Arbitrum Orbit · settles to Ethereum~100ms blocks

Robinhood Chain API

Query Robinhood Chain like a database. Not a node.

Don't run an Orbit node or page through an explorer. Bitquery has decoded every Robinhood Chain block since genesis — 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.

200 · WebSocket · 320msstreaming.bitquery.io
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 }
    }
  }
}
EVM.DEXTradesLive tokenized-stock swaps, decoded from Uniswap v4.Docs
stock_tokens.graphqlCopy
subscription {
  EVM(network: robinhood) {
    DEXTrades(
      where: {Trade: {Buy: {Currency:
        {Symbol: {in: ["NVDA","AAPL"]}}}}}
    ) {
      Trade {
        Buy { Price Amount
          Currency { Symbol } }
        Dex { ProtocolName }
      }
    }
  }
}
responseSTREAMING
Stock Token / DEXSidePriceAmount
200 · WebSocket · 320msstreaming.bitquery.io
Trusted across 40+ chains by
Nansen logo0x logo3Commas logoLukka logoCoin Metrics logo
2026
Indexed from the genesis block
~100ms
Block cadence, streamed decoded in real time
200+
Stock Tokens decoded into one feed
1 schema
Same EVM schema as Ethereum, Arbitrum & Base
01
Forget the RPC

A 100ms chain is unreadable over raw JSON-RPC.

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.

You need
Raw JSON-RPC / explorer
Bitquery Robinhood Blockchain API
A wallet's full Stock Token & trade history
Thousands of chained getLogs calls, then decode and price each one
One query, USD-valued, since genesis
Uniswap v4 trades on Robinhood Chain
Decode the PoolManager singleton, hooks and deltas yourself
Decoded swaps with pairs, pools, prices & OHLCV
Stock Token corporate actions
Track dividend token-multiplier events contract by contract
Normalized transfer, supply & balance history
Real-time data at 100ms cadence
A raw websocket firehose you still have to decode
Decoded Kafka / WebSocket streams, sub-second latency
Historical depth
Rate-limited explorer APIs, capped pagination
Full archive from block 0, query-ready
Infrastructure
Run an Orbit node + your own indexer, forever
None. An API key.
03
Protocol coverage

The day-one ecosystem, decoded.

Robinhood Chain launched with DeFi built in. Every protocol below is parsed into the same schema — and every new deployment gets added.

ProtocolTypeCoverage
UniUniswapV4 AMMStock Token & crypto swaps, pools, hooks, OHLCV, LP events
MoMorphoLending · powers Robinhood EarnVault deposits, withdrawals, rates & positions
LiLighterPerpetualsPerp trades, funding & liquidations
PlPleiadesMarket makingAutomated Stock Token liquidity flows
ChChainlinkOraclesPrice feed updates & cross-chain data
LZLayerZeroMessagingCross-chain messages & OFT transfers
ArCanonical bridgeArbitrum bridgeDeposits, withdrawals & challenge-period tracking
+ Every new Robinhood Chain protocol we decode as it launches
04
Datasets

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 historical from genesis and streamable in real time over WebSocket or Kafka.

Featured · only on Robinhood ChainStock Tokens

Stock Tokens API

Transfers, holders, supply and USD value for 200+ tokenized US stocks and ETFs — NVDA, AAPL, GOOG and more — including dividend token-multiplier events. Only on Robinhood Chain; only decoded here.

Explore docs
DeFi

DEX Trades API

Uniswap v4 swaps with OHLCV candles, pairs, pools and per-wallet trade history — Stock Tokens and crypto alike.

Explore docs
Tokens

Token Transfers API

Every ERC-20, ERC-721 & ERC-1155 transfer with historical USD value, volumes and inflow / outflow per address.

Explore docs
Wallets

Balance API

Real-time & historical ETH and token balances for any wallet — with USD portfolio value for trackers and tax tools.

Explore docs
Tokens

Token Holders API

Top holders, balance distribution and decentralization metrics — Gini and Nakamoto coefficients — for any token, including Stock Tokens.

Explore docs
Compliance

Money Flow · Coinpath®

Trace inbound and outbound fund flows across Robinhood Chain addresses for AML, forensics and investigation workflows.

Explore docs
Contracts

Smart Contract Trace API

Decoded call traces with arguments, internal transactions and success status — parsed by ABI.

Explore docs
Contracts

Smart Contract Events API

Decoded event logs by ABI — query Transfer, Swap, Initialize or any topic by contract, name or signature.

Explore docs
Cross-chain

Bridge & Cross-Chain API

Canonical bridge deposits and withdrawals plus LayerZero flows — follow assets between Ethereum, Arbitrum and Robinhood Chain.

Explore docs
Network

Transactions API

Transaction details, receipts, internal transactions, gas used and status — filter by sender, receiver or value.

Explore docs
Network

Blocks API

Block headers, timestamps and gas usage at 100ms cadence — for time-series analytics and explorers.

Explore docs
Network

Gas & Fees API

L2 gas and fee analysis on the ETH-denominated gas token — power estimators and cost dashboards.

Explore docs
05
Build with it

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.

Subscription · Stock Tokens

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
200 · WebSocket · 320msstreaming.bitquery.io
subscription {
  EVM(network: robinhood) {
    DEXTrades(
      where: {Trade: {Dex: {ProtocolName:
        {is: "uniswap_v4"}}}}
    ) {
      Trade {
        Buy { Price Amount
          Currency { Symbol } }
        Sell { Currency { Symbol } }
      }
      Block { Time }
    }
  }
}
Query · OHLCV

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
200 · GraphQL · 210msgraphql.bitquery.io
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)
    }
  }
}
Query · Portfolio

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
200 · GraphQL · 190msgraphql.bitquery.io
query {
  EVM(network: robinhood) {
    BalanceUpdates(
      where: {BalanceUpdate: {Address:
        {is: "0xA1b2…c3D4"}}}
    ) {
      Currency { Symbol Name }
      balance: sum(of:
        BalanceUpdate_Amount)
      value: sum(of:
        BalanceUpdate_AmountInUSD)
    }
  }
}
Subscription · Events

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
200 · WebSocket · 320msstreaming.bitquery.io
subscription {
  EVM(network: robinhood) {
    Events(
      where: {Log: {Signature:
        {Name: {is: "Initialize"}}}}
    ) {
      Log { Signature { Name } }
      Transaction { Hash }
      Block { Number Time }
    }
  }
}
Why teams pick Bitquery

The ground truth of 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.”

A
Alexander Karsten
Nansen
Nansen logo

Pricing

Start free. Scale when your users do.

Every plan includes Robinhood Chain alongside the rest of Bitquery's chains — one key, one schema. Save 20% with annual billing.

Personal

For side projects, learning & testing. Personal use only — no commercial use.

$39/ month

billed annually ($468/yr) · save 20%

+ Add-on points anytime · $40 / 1M
  • 100k API points / mo ≈ 20k calls
  • 30 req/min · 3 simultaneous
  • Full GraphQL & REST schema
  • Real-time data · 9 core chains 30-day window
  • API only — no streams
  • Community support
Start free trial

Pro

For trading bots, alerts & dashboards on live DEX and price data.

$79/ month

billed annually ($948/yr) · save 20%

+ Flat-rate add-ons — points, minutes & GB
  • 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
  • Real-time data · 9 core chains
Start free trial
Most popular

Scale

For production real-time apps — every stream, scale on demand.

$239/ month

billed annually ($2,868/yr) · save 20%

+ Flat-rate add-ons — points, minutes & GB
  • 5M API points / mo ≈ 1M calls
  • 240 req/min · 12 simultaneous
  • 2M stream-minutes + 50 GB
  • 1,000 concurrent streams
  • All streams onchain + mempool
  • Dedicated Slack support
Choose Scale →

Enterprise

Full history, unlimited streams & bulk delivery at scale.

Custom

flat platform fee — no metering

◆ Flat platform fee — modelled, not metered
  • 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
Talk to sales

Flat-rate add-ons on every open plan: $40 / 1M points · $20 / 100k stream-minutes · $8 / GB (bought yearly · save 20%) — same price at any volume, billed only for what you add.

FAQ

Robinhood Blockchain API — common questions.

How do I get Robinhood Chain data with Bitquery?
We index Robinhood Chain from the genesis block and serve it through GraphQL APIs, WebSocket subscriptions, Kafka streams and cloud warehouses (S3, Snowflake, BigQuery, Azure). Sign up at account.bitquery.io for an API key, then query blocks, transactions, Stock Token transfers, Uniswap v4 trades, balances and decoded contract events through a single endpoint — no Orbit node required.
Can I query tokenized stock (Stock Token) trades and transfers?
Yes. Every Stock Token on Robinhood Chain — 200+ tokenized US stocks and ETFs such as NVDA, AAPL and GOOG — is decoded into the same schema. Query transfers, holders, supply, USD value and Uniswap v4 trades, including dividend token-multiplier events. Stock Tokens are tokenized derivative instruments, not equities, and Bitquery provides blockchain data, not brokerage services.
Does Bitquery stream Robinhood Chain data in real time?
Yes. We stream Robinhood Chain over WebSocket subscriptions and Kafka with sub-second latency — decoded, not a raw firehose. Robinhood Chain produces a block roughly every 100ms, and every trade, transfer and event is delivered decoded the moment it lands — ideal for tickers, alerts and trading systems.
Is Robinhood Chain in the same schema as Ethereum and Arbitrum?
Yes. Robinhood Chain is an EVM chain served through Bitquery's unified EVM schema. The same DEXTrades, Transfers, Balances, Events and Calls queries you use on Ethereum, Arbitrum and Base work on Robinhood Chain — switch the network and your existing code runs unchanged.
Can I get wallet balances, portfolio value and PnL?
Yes. The Balance and BalanceUpdates APIs return real-time and historical ETH and token balances for any wallet, including Stock Tokens, with USD portfolio value. Combine them with transfer and trade history to compute realized PnL — the backbone of portfolio trackers and tax tools.
Which Robinhood Chain DeFi protocols are decoded?
Robinhood Chain launched with DeFi built in. We decode Uniswap v4, Morpho (which powers Robinhood Earn), Lighter (perpetuals), Pleiades (market making), Chainlink oracles, LayerZero messaging and the canonical Arbitrum bridge — all parsed into one schema, with new deployments added as they launch.

Ship your Robinhood Chain product this week.

7-day free trial — full Robinhood Chain data on self-service plans, no node to run. Query back to the genesis block and stream live trades on your very first call.

No credit card · Full Robinhood Chain data · All 40+ chains included