For perp traders
The terminal for HL-native traders.
Whale tape, cross-venue funding, real-time picks, and an EIP-712-signed order entry — all in one URL, all free, no signup. Built on top of the public Hyperliquid info API so what you see is what the venue sees.
Monday-morning workflow
- 1
Picker scans 200+ HL markets every 15s; tape updates over SSE in under 2s. /live
- 2
Composite of breadth, funding, vol, dollar strength. /dashboard
- 3
Spread chart highlights basis arbs in real time. /funding/spread
- 4
Reveals the actual flow behind the move. /footprint
- 5
Dealer-positioning levels mark price magnets. /options/gex
- 6
No custody, no API key — your wallet signs each action. /trade
Pages built for you
Top-conviction HL pick with proof chips (funding · OI · whales · gamma) + a merged tape of whales / funding / liqs. One screen, no signup.
/live
Global timeline, coin × time heatmap, max-pain levels, forward cascade forecast.
/liquidations
Persistence streaks, regime tags, cross-venue spread — knowing who's paying who.
/funding/regime
Sortable per-coin feed of whale prints with a side ratio strip and notional bands.
/whales
MarketPulse hero, momentum scanner, perp basis leaderboard, OI archive.
/oi
Top HL wallets by net flow, with paste-an-address inspector at /profile/[address].
/whales/leaderboard
compressed_bull · short_squeeze · cascade_fuel_reset · stretched_bear — labeled live.
/signals
Direct order entry with EIP-712 signing through the canonical builder.
/trade
Real code
Tail every HL whale print over $250k in your console
import { mmflow } from "@mmflow/sdk";
const es = mmflow.streams.whales({ minUsd: 250_000 });
es.on("whale", (w) => {
console.log(`${w.coin} ${w.side.toUpperCase()} $${w.notionalUsd.toLocaleString()}`);
});Get the current HL funding spread vs Binance
curl -s 'https://mmflow.ai/api/v1/perps/funding?coin=BTC' \
| jq '.venues | { hl: .hyperliquid.rate, bn: .binance.rate, diff: (.hyperliquid.rate - .binance.rate) }'