For protocols & ecosystem teams
HIP-3 markets, ecosystem observability, embeddable widgets.
If you're spinning up a permissionless perp on HIP-3 or running a market on Hyperliquid, mmflow surfaces your venue alongside the canonical perps with the same depth — OI, funding, whales, liqs, leaderboard. The embeddable widgets drop into your own Discord or docs.
Monday-morning workflow
- 1
Coverage extends automatically as new deployers ship. /hip3
- 2
Side-by-side fundamentals + perp basis. /hip3-vs-canonical
- 3
Whale tape, funding history, liq levels. /coin
- 4
Forum admins paste; no SDK install required. /docs/api/cookbook
- 5
Drives engagement without manual curation. /signals
- 6
Live uptime probe across every relevant endpoint. /docs/api/status
Pages built for you
Every permissionless perp dex on Hyperliquid, with depth + recent flow.
/hip3
Side-by-side comparison for stock-perp deployers — AAPL, NVDA, GOOG, TSLA.
/hip3-vs-canonical
Every named market gets a dedicated /coin/[name] page across our data surface.
/coin
Real-time tape your community can watch — embeddable as an `<iframe>` snippet.
/whales
Time-series across every venue we ingest for cross-protocol research.
/oi
Cross-archive setup labels — perfect for community Discord pings.
/signals
Drop-in `<iframe>` widgets for your forum or docs site.
/docs/api/cookbook
Public API + live status — sign of a serious data partnership.
/docs/api
Real code
Embed the HL whale ticker in your community Discord forum
<iframe
src="https://mmflow.ai/embed/whale-ticker?minUsd=100000"
width="100%"
height="48"
frameborder="0"
loading="lazy"
title="HL whale ticker">
</iframe>Build a per-coin overview widget for your protocol's docs
// Pull live mid + funding + OI in one shot — no auth required.
import { mmflow } from "@mmflow/sdk";
const [mid, funding, oi] = await Promise.all([
mmflow.perps.mids({ coin: "YOURTOKEN" }),
mmflow.perps.funding({ coin: "YOURTOKEN" }),
mmflow.perps.oi({ coin: "YOURTOKEN" }),
]);
render({ mid, funding, oi });See your venue in the explorer.
Or open the API docs to wire mmflow into your protocol's own dashboards.