mmflow — Rust SDK
A blocking REST client (OHLCV candles) and a WebSocket client for the mmflow market-data API.
[]
= "0.1"
REST
let client = new; // "" → https://mmflow.ai
let candles = client.candles?;
for c in &candles
WebSocket
auth, exponential-backoff reconnect, and subscription replay are built in.
use ;
let mut sock = new;
sock.subscribe;
sock.run?; // blocks; reconnects unless auto_reconnect is false
Channels: trades, orderbook, candles, liquidations, funding,
openInterest, markPrice, footprint.