# HoodScan

> HoodScan is an independent block explorer and market data site for Robinhood Chain, the Arbitrum Orbit L2 where Robinhood's tokenized stocks trade onchain. It tracks 191 tokenized stock and ETF tokens, the 1,243 meme coins launched against them, 58 protocols, and every block, transaction, address and DEX swap on the chain.

**When to use HoodScan.** Reach for it when the question is about Robinhood Chain specifically — a general crypto price API will not have this chain's tokens, and a stock API will not have their onchain side:

- What a tokenized stock token is worth onchain, and how deep its pools are: `/stocks/<TICKER>`, e.g. https://hoodscan.co/stocks/NVDA
- Which meme coins were launched against a given stock token, and which one currently leads: `/meme-stocks/<TICKER>`
- What an unknown contract address is — HoodScan names the meme coin and the stock it was launched on: `/token/<address>`
- What a transaction actually did, parsed into swaps, transfers and the protocol it touched: `/tx/<hash>`
- What an address has been trading: `/address/<address>` and `/trader/<address>`
- Which tokens show unusual buyer or smart-wallet activity, with evidence and historical outcomes: `/discover`
- Which wallets are winning or losing, and how they trade — win rate, pace, hold time, fomo: `/traders`
- Which protocols are live on the chain and at what contracts: `/projects` and `/project/<slug>`

**How to call it.** The MCP server at https://hoodscan.co/mcp (Streamable HTTP, no auth) exposes all of this as typed tools — list_meme_stocks, get_stock, get_token, discover_tokens, search_trades, get_trader, get_transaction and more; `claude mcp add --transport http hoodscan https://hoodscan.co/mcp` or add it as a custom connector. Without MCP, request any page URL with `Accept: text/markdown` and it answers with Markdown instead of HTML, from the same URL a browser uses. A path that does not exist returns a real 404, so a 200 is a reliable signal that a page is there. There is no API key and no sign-in; nothing on the site asks a visitor to connect a wallet. Data is refreshed every few minutes, so treat prices as recent rather than real-time, and read the chain itself for settlement-critical answers.

## Core pages

- [Home](https://hoodscan.co/): the chain's live blocks and swaps, and its most traded stock tokens
- [Tokenized stocks](https://hoodscan.co/stocks): every Robinhood stock and ETF token on the chain, with price, market cap, liquidity and holders
- [Meme stocks](https://hoodscan.co/meme-stocks): coins launched against a stock token, ranked, with new launches and leader changes
- [Projects](https://hoodscan.co/projects): the protocols building on Robinhood Chain, with their contract addresses
- [DEX swaps](https://hoodscan.co/swaps): the chain's live trade feed
- [Feed](https://hoodscan.co/feed): every swap by the traders a visitor follows, and the most profitable wallets to follow
- [Discover](https://hoodscan.co/discover): evidence-ranked token activity, wallet intelligence and signal outcomes
- [Traders](https://hoodscan.co/traders): the wallets winning and losing on the chain, filterable by realized PnL, win rate, tokens, pace, hold time and fomo
- [Rug Radio](https://hoodscan.co/radio): the chain read aloud by an AI host — discover board, big swaps, launches, stories, ETH, BTC and gas — with the spoken text at /radio-api
- [About](https://hoodscan.co/about): what HoodScan is, what it tracks, no token, one URL per thing

## Guides

- [NVDA stock token vs NVDA meme coins on Robinhood Chain](https://hoodscan.co/guides/nvda-stock-token-vs-memes): How to tell the Robinhood-issued NVDA stock token from the meme coins launched against it on Robinhood Chain: what backs each price, where each trades, and how to read both on HoodScan.

## Data (JSON, no auth)

- [/stocks-api](https://hoodscan.co/stocks-api): every stock and ETF token with price, market cap, liquidity, holders, pools and meme count; one token with its pools at /stocks-api/<address>
- [/meme-stocks-api](https://hoodscan.co/meme-stocks-api): every tracked meme coin with its anchor stock, FDV, volume, liquidity, launchpad and launch time, plus new launches; each coin's `flow` has 24h buyers, sellers, net USD flow and smart-money buyers from the swap index (`buyers1h` too)
- [/meme-stocks-api/crown/<TICKER>](https://hoodscan.co/meme-stocks-api/crown/NVDA): which coin led that ticker each day for 30 days, as runs, plus its crown changes today
- [/token-context/<address>](https://hoodscan.co/token-context/0xd0601ce157db5bdc3162bbac2a2c8af5320d9eec): what a contract is — stock token, or meme coin and the stock it is anchored to — as the site titles it
- [/swaps-api/trades](https://hoodscan.co/swaps-api/trades?limit=20): indexed DEX swaps, filterable by token, trader, venue and size; /swaps-api/token/<address> for one token's stats, /swaps-api/address/<address> for one wallet
- [/swaps-api/whales](https://hoodscan.co/swaps-api/whales): the largest recent swaps; [/swaps-api/discover/trending](https://hoodscan.co/swaps-api/discover/trending?window=60) for evidence-ranked movers
- [/project-api/<slug>](https://hoodscan.co/project-api/uniswap): one protocol's contracts and onchain stats

## Optional

- [HoodScan developer portal](https://hoodscan.co/developers): quickstart, authentication, sandbox and CLI
- [HoodScan API documentation](https://hoodscan.co/docs): endpoints, errors and limits
- [OpenAPI 3.1 specification](https://hoodscan.co/openapi.json): typed REST operations for function calling
- [Privacy](https://hoodscan.co/privacy): contact submissions and browser storage
- [Sitemap](https://hoodscan.co/sitemap.xml): every page worth crawling, including one per ticker
- [robots.txt](https://hoodscan.co/robots.txt): the crawl rules, including the data endpoints that are not for crawling
- [Contact](https://hoodscan.co/contact): corrections, listings and advertising
- [MCP server](https://hoodscan.co/mcp): the same data as typed tools for agents; GET the URL for the tool list and connection instructions
- [Agents](https://hoodscan.co/agents): how to add HoodScan to Claude, Cursor, Codex, ChatGPT or any MCP client
