every public series this terminal records, as a catalog: what each table holds, how fresh it is right now, how far back it goes, and how to read it with curl or over mcp. same fail-closed clocks as every other page.
premium_snapshotsevery tokenized stock priced three ways every five minutes: the 24/7 dex, the live us-market print (only while the session was open and fresh), and the chainlink oracle — with the premium and drift computed at capture, under the session regime the row was captured in.
curl
curl -s https://rhxbt.com/api/v2/stocks/premiums | jq .
mcp
curl -s https://rhxbt.com/mcp -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_stock_premiums","arguments":{}}}'corporate_actionserc-8056 multiplier transitions — splits and stock dividends — detected from the transfer ratio at a specific block (chain-dated facts), plus the forward calendar read from each contract's newUIMultiplier()/effectiveAt() before the change applies.
curl
curl -s https://rhxbt.com/api/v2/stocks/corporate-actions | jq .
mcp
curl -s https://rhxbt.com/mcp -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pending_corporate_actions","arguments":{}}}'stock_settlement_dailyone row per stock per utc day: transfer counts with the off-hours share (the 24/7 settlement read), and primary-market mint/burn in shares at the multiplier in force at each block. the long-run record behind the settlement heatmaps.
curl
curl -s https://rhxbt.com/api/v2/stocks/flows | jq .
mcp
curl -s https://rhxbt.com/mcp -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_equity_flows","arguments":{}}}'dvp_settlementsdelivery-versus-payment prints: a stock leg and a cash leg in one transaction between the same two parties in opposite directions — real executions at real size that never touched a pool, invisible to every dex-based index.
curl
curl -s https://rhxbt.com/api/v2/stocks/graph | jq .
mcp
curl -s https://rhxbt.com/mcp -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_settlement_graph","arguments":{}}}'perp_marketslighter perpetuals (the chain's native perp venue, usdg-quoted): one current row per market, and the hourly funding series — one bucket per settlement hour, append-only, a failed pass leaves a gap and never a zero. where the ticker is a tokenized stock we track, the read model joins our dex leg for the perp-vs-spot basis nobody else can compute.
curl
curl -s https://rhxbt.com/api/v2/perps | jq .
mcp
curl -s https://rhxbt.com/mcp -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"perps_markets","arguments":{}}}'stable_supplytotalSupply() per tracked stablecoin, hourly, counted at par — plus the issuance tape (stable_flows: every mint from and burn to the zero address, block-timestamped). the float behind every other board; says nothing about peg.
curl
curl -s https://rhxbt.com/api/v2/stables | jq .
mcp
curl -s https://rhxbt.com/mcp -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"stablecoin_flows","arguments":{}}}'chain_econ_hourlysequencer economics measured from blocks, one row per settled utc hour from a bounded, evenly spaced sample: transactions, gas, l2 fees actually paid (gasUsed × effectiveGasPrice from receipts), contract deploys, and erc-4337 entrypoint traffic — the sponsored population the gas-subsidy cliff applies to.
curl
curl -s https://rhxbt.com/api/v2/chain/economics | jq .
mcp
curl -s https://rhxbt.com/mcp -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"chain_economics","arguments":{}}}'oracle_healthevery chainlink feed on the chain with a verdict every five minutes: ok | stale (no new round past the feed's own observed cadence while the session is open) | paused (the stock contract's advisory oraclePaused()) | diverged (vs the live print or the dex past the broken-feed bar).
curl
curl -s https://rhxbt.com/api/v2/oracle-health | jq .
mcp
curl -s https://rhxbt.com/mcp -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"chainlink_feed","arguments":{}}}'kol_callsevery tracked caller's token calls with verified onchain outcomes: entry price at first observation after the tweet, peak, the anti-wick 24h-later price (a win must still be a win a day later), and a rugged flag when the shilled pool later collapses to dust. the evidence behind the kol leaderboard.
curl
curl -s https://rhxbt.com/mcp -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_kol_leaderboard","arguments":{}}}'mcp
curl -s https://rhxbt.com/mcp -H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_kol_leaderboard","arguments":{}}}'kv_state (board_wallets_7d / board_wallets_all)the wallet pnl leaderboards, precomputed on the agent because the 7-day fold over the full swap tape is a scan no synchronous render path may run (one such request was once a full site outage). every row's pnl carries valuation provenance — a wallet with undatable marks is excluded, not guessed.
curl
# no public rest route yet — served on https://rhxbt.com/wallets
mcp
# no mcp tool yet — the boards render at https://rhxbt.com/wallets
source: public rpc · blockscout · dexscreener · chainlink · defillama · lighter · twitterapi.io · full rest spec at /api/v2/openapi.json · agent card at /.well-known/agent.json · machine map at /llms.txt · everything free today (x-price 0 on every route)