MM Flow

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. 1

    Browse the HIP-3 market explorer — every permissionless perp dex live on HL.

    Coverage extends automatically as new deployers ship. /hip3

  2. 2

    Compare canonical vs HIP-3 stocks like AAPL, NVDA, GOOG, TSLA.

    Side-by-side fundamentals + perp basis. /hip3-vs-canonical

  3. 3

    Drop into your venue's per-coin /coin/[name] page for a deep dive.

    Whale tape, funding history, liq levels. /coin

  4. 4

    Embed the live whale ticker in your Discord via an `<iframe>` snippet.

    Forum admins paste; no SDK install required. /docs/api/cookbook

  5. 5

    Pipe regime transitions to your community channel as setup alerts.

    Drives engagement without manual curation. /signals

  6. 6

    Show the data sources in /docs/api/status — proves your protocol is well-instrumented.

    Live uptime probe across every relevant endpoint. /docs/api/status

Pages built for you

Real code

Embed the HL whale ticker in your community Discord forum

Bash
<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

TypeScript
// 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.