The data layer for Robinhood Chain.
RWAs, stablecoins, memecoins — live, indexed, agent-readable.
No key. No account.
Read from rpc.mainnet.chain.robinhood.com through
this site's API, a few seconds old at most. Nothing simulated.
An RPC only answers for right now. Hood Synapse keeps the past — daily activity, gas, block cadence. Growing every day.
Real-world assets and memecoins on one chain. NVIDIA and the S&P 500 sit next to Dog In Hood. Ranked by transfer activity.
Price is the on-chain DEX price from the deepest pair on this chain — not a reference exchange quote. Liquidity is summed across every pair, and it sits next to the price on purpose: a tokenized equity trading against a few thousand dollars of depth can sit far from its off-chain price.
An MCP server, so your agent reads Robinhood Chain directly. Live blocks, RWAs, history. One line of config.
{
"mcpServers": {
"hoodsynapse": {
"command": "npx",
"args": ["-y", "hoodsynapse-mcp"]
}
}
}
What real-world assets trade on Robinhood Chain?
How busy is the chain today versus last week?
What happened in block 20,401,056?
Is the index current enough to trust that?
Clean JSON over the chain. Decimal numbers. System transactions filtered. Open CORS.
One curl away, from any language.
# one call, everything you need
curl https://hoodsynapse.xyz/api/stats
{
"chainId": 4663,
"latestBlock": 16334131,
"blockTimeSeconds": 4.0,
"gasPriceGwei": 0.0738,
"l1BlockNumber": 25587515, …
}
curl https://hoodsynapse.xyz/api/block/latest
{
"number": 16334131,
"timestampISO": "2026-07-22T09:56:02Z",
"txCount": 4,
"userTxCount": 3, ← system txs filtered
"sendRoot": "0x3c71…", …
}
GET /api → endpoint index
GET /api/stats → chain snapshot: block, gas, block time
GET /api/gas → gas breakdown
GET /api/block/latest → latest block, cleaned
GET /api/block/{number} → any block by number
# prefer raw? the underlying JSON-RPC is documented in /docs
Run the same calls in your own console. If our numbers disagree with the chain, the chain is right.
Add the network to any EVM wallet or SDK. Official public parameters.
Reading the chain stays free. Always. $SYNAPSE is for what sits above that line — heavier usage, index priority, settlement between agents. Not launched yet.
Coming soon