Guides
FOMO Thesis Data for Robinhood Chain Traders
Robinhood Chain is the largest source of thesis volume in the FOMO feed. Pull the why behind trades, filtered to chain 4663, with the token contract, the author, and their equity and PnL attached, from one endpoint.

A price feed tells you what a trader bought. A thesis tells you why. On FOMO, a thesis is the short note a trader posts when they take a position, and right now Robinhood Chain produces more of them than any other chain in the feed.
Robinhood Chain (an EVM Layer 2, chain id 4663) went live on July 1, 2026 and quickly became the most active chain on fomo.family. That is true for trades, and it is true for theses: the majority of the written reasoning attached to FOMO trades is now happening on chain 4663. If you are building narrative detection, a research feed, or an LLM that reads the market, that is the stream you want.
One call, only Robinhood theses
curl "https://api.fomoapi.io/v2/thesis?chain=robinhood&limit=50" \
-H "authorization: Bearer YOUR_API_KEY"
Every item is a real thesis on a Robinhood Chain token, labeled so you never have to guess the chain:
{
"chain": "robinhood",
"networkId": 4663,
"handle": "BULL_THEORY",
"text": "easiest hold of my life, big things coming",
"token": { "symbol": "TA", "address": "0x9ca1cc0c90d97b4f36c5e2232d4fbd705a73c65d" },
"equity": 12565.25,
"unrealizedPnlUsd": 2437.42,
"likes": 0,
"ts": "2026-08-31T16:07:52Z"
}
robinhood, hood, and rh all map to chain 4663.
The conviction comes attached
This is the part a screenshot cannot give you. Each thesis carries the author's equity in the position and their realized and unrealized PnL, so you are not reading an anonymous opinion, you are reading what someone wrote while holding a real, sized, on-chain position. A bullish note from a wallet that is up and holding size reads very differently from the same words on an empty bag, and the API hands you both halves.
Three ways to slice it
- Global, chain-scoped:
GET /v2/thesis?chain=robinhoodfor the whole Robinhood-Chain thesis stream. - Per coin:
GET /v2/thesis/token/{address}for every thesis written about one Robinhood Chain token, the fastest read on whether a narrative is forming. - Per trader:
GET /v2/thesis/user/{handle}?chain=robinhoodfor one trader's Robinhood-Chain reasoning, sorted bylikesorrecent.
Feed it to a model
The obvious use is narrative detection. Pull the Robinhood-Chain thesis stream, group by token, and hand the clustered text to an LLM to summarize what the chain is getting excited about before it shows up in price. Because each thesis is tied to a token contract and an author with a track record, you can weight the loud, well-positioned voices over the noise.
The free tier covers 10,000 requests per month, every endpoint included. Higher volume and 24/7 streaming are on the paid plans at /pricing.
FOMO API is an independent, unofficial data layer for fomo.family. It is not affiliated with, endorsed by, or sponsored by FOMO or Robinhood.
Ship on fomo.family trader data
Both-chain wallets, PnL and holdings, plus two live streams: the app feed on every plan, the on-chain stream on Growth. One API.
Get an API key