Protocol analysis, wallet-session mapping, and production-ready APIs for positions, orders, PnL, funding and HIP-3 market data
Dexly is a non-custodial trading interface for Hyperliquid's on-chain perpetual markets. The app itself never holds funds, but the wallets, positions and orders routed through it produce a rich stream of on-chain and order-book data — equity, margin, open positions, funding rates, fills and realized/unrealized PnL — that treasury teams, market-data platforms and trading firms increasingly need to ingest in a structured way.
Every block below points at a specific data surface inside Dexly (and the underlying Hyperliquid endpoints) plus one concrete downstream use. Nothing here is generic — each module maps to endpoints, payload fields and a business outcome.
Protocol analysis of Dexly's WalletConnect v2 handshake and of the third-party Privy email-wallet flow. We map session topics, agent-wallet signatures and device biometric gating to a stable server-side session model, so a back-office tool can call APIs on behalf of a trader without ever touching seed phrases.
Use: unify multi-wallet login across desktop dashboards and mobile devices for a trading desk or family office.
Exposes clearinghouseState equivalents — account value, total margin used, maintenance margin, cross/isolated mode, leverage per asset, and liquidation price — into a normalised schema. Deltas can be streamed as Kafka events or CSV snapshots.
Use: automated margin-call alerting and daily risk reports that combine Dexly positions with CEX accounts.
Structured export of open, filled and cancelled orders: order id, cloid, side, size, price, trigger, time-in-force, fee and fill time. Supports paging by time window and by wallet address.
Use: trade reconciliation and best-execution reports for funds trading on Hyperliquid via Dexly.
Real-time funding rate, predicted funding, L2 orderbook snapshots, trade prints and mark price per market. Delivered over WebSocket with a REST fallback for backfill.
Use: feed a quant signal pipeline or a third-party charting product with institution-grade on-chain perp data.
Hyperliquid's HIP-3 framework lets third parties deploy their own perp markets (indices, commodities, long-tail assets). We maintain a nightly catalog job that pulls active perp dexes, maxLeverage, szDecimals and listing status, so your frontend or pricing engine always knows which symbols are tradeable inside Dexly today.
Use: dynamic symbol onboarding for a portfolio tracker that wants to follow new on-chain markets as soon as they launch.
Historical ledger of deposits, withdrawals, funding payments, referral rewards and realized PnL, reshaped into a double-entry friendly format suitable for accounting imports.
Use: monthly tax and accounting packs for traders who need a clean general-ledger view instead of raw on-chain transfers.
The table below is derived from Dexly's documented feature set and from publicly documented Hyperliquid endpoints used under the hood. Each row is a candidate for OpenData / OpenFinance style integration; granularity reflects what the underlying chain and matching engine expose today.
| Data type | Source (Dexly screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Account summary (equity, margin) | Portfolio tab, account header | Per wallet, near real-time | Risk dashboards, margin alerts |
| Open positions | Positions panel | Per wallet, per market, sub-second updates | Live exposure reporting, hedging |
| Working & historical orders | Orders tab, order history | Per order id, millisecond timestamps | Execution analytics, TCA |
| Fills & trade ledger | Trade history | Per fill, with fee and liquidity flag | Accounting, tax reports |
| Realized / unrealized PnL | Portfolio & PnL tracking | Per wallet, per market, daily and lifetime | Performance reporting for LPs / clients |
| Funding payments | Funding metrics | Per market, per funding interval | Carry modelling, cost attribution |
| Orderbook & depth | Market view, charts | L2 snapshots & incremental updates | Market making, liquidity research |
| HIP-3 market metadata | Market switcher, asset selector | Per dex / per asset, daily refresh | Symbol catalog, new-market detection |
Four real-world setups we have delivered variants of, each mapping Dexly / Hyperliquid data to a concrete OpenData or OpenFinance pattern. The field names are illustrative and match the structure of the public Hyperliquid info endpoints.
Context: A crypto fund has 12 trading wallets split across desk members, all using Dexly on mobile and Hyperliquid on desktop.
Data & API: positions, clearinghouseState, fills, funding history per wallet, aggregated on our side into a single /v1/desk/exposure REST response.
OpenFinance mapping: Same pattern as a consent-based account-aggregation service: explicit per-wallet authorization, read-only scope, append-only audit log.
Context: A trader needs a monthly CSV that their accountant can reconcile with bank statements.
Data & API: Ledger of deposits, withdrawals, funding, realized PnL, fees; reformatted into a double-entry CSV plus a PDF summary. Endpoint: GET /v1/ledger?wallet=0x…&from=…&to=….
OpenFinance mapping: Equivalent to a statement export in retail banking — same deliverable, just sourced from on-chain perp activity instead of a current account.
Context: A small market maker wants orderbook and trade prints for research across 40 Hyperliquid markets (including HIP-3 listings).
Data & API: WebSocket subscription to l2Book and trades, plus REST candleSnapshot for backfill. Normalized parquet files delivered to S3.
OpenFinance mapping: Mirrors market-data vendor patterns (Refinitiv / Bloomberg feeds) adapted to an on-chain order book.
Context: A regulated prop firm needs proof that all trades on its books actually came from firm-owned wallets used in Dexly.
Data & API: Wallet allowlist, signed message attestations, fills cross-checked with on-chain Hyperliquid events, exposed via a /v1/compliance/attest endpoint.
OpenFinance mapping: Consent + strong customer authentication patterns from PSD2 / SCA, translated into wallet signature + device attestation.
Three short snippets that show how we typically wrap the Dexly / Hyperliquid surface behind a stable REST and WebSocket contract. These are illustrative — production code is delivered per-customer with OpenAPI specs, tests and error mappings.
POST /api/v1/dexly/positions
Content-Type: application/json
Authorization: Bearer <ACCESS_TOKEN>
{
"wallet": "0x4A...f12c",
"include": ["assetPositions", "marginSummary", "liquidationPx"]
}
200 OK
{
"wallet": "0x4A...f12c",
"equity": "128450.22",
"marginSummary": { "accountValue": "128450.22", "totalMarginUsed": "31200.10" },
"positions": [
{
"coin": "ETH",
"szi": "-12.4",
"entryPx": "3482.5",
"unrealizedPnl": "-142.18",
"leverage": { "type": "cross", "value": 10 },
"liquidationPx": "3891.7"
}
]
}
// Subscribe to L2 book + user fills
ws.send(JSON.stringify({
method: "subscribe",
subscription: { type: "l2Book", coin: "BTC" }
}));
ws.send(JSON.stringify({
method: "subscribe",
subscription: { type: "userFills", user: "0x4A...f12c" }
}));
// Incoming frame (trimmed)
{
"channel": "userFills",
"data": {
"fills": [
{ "coin": "BTC", "px": "64210.5", "sz": "0.25",
"side": "B", "time": 1734028812345,
"fee": "0.80", "oid": 98765432 }
]
}
}
POST https://customer.example.com/hooks/hip3
X-Signature: sha256=...
Content-Type: application/json
{
"event": "market.listed",
"dex": "perp-dex-03",
"symbol": "GOLD-PERP",
"category": "commodity",
"maxLeverage": 20,
"szDecimals": 3,
"firstSeenAt": "2026-04-17T02:14:55Z"
}
// On error we retry with exponential backoff (1s, 5s, 30s, 5m, 30m)
// and expose a replay endpoint: GET /v1/webhooks/replay?from=...
Dexly is a non-custodial interface, which shapes how we design every integration: we never ask customers for seed phrases, and never persist raw private keys. Read-only flows use Hyperliquid agent wallets (API wallets) that can sign trading actions but cannot withdraw funds, matching Hyperliquid's own security guidance.
For customers who process EU or UK users, pipelines are configured under GDPR and UK DPA 2018: explicit consent per wallet, data-minimisation, a documented retention window and a signed Data Processing Agreement. Where Open Banking parallels apply, we align with PSD2 / SCA patterns (strong customer authentication on each new device, short-lived tokens).
On the crypto side we track evolving rules — MiCA in the EU and FATF's Travel Rule — and can add counterparty tagging, travel-rule metadata and sanctioned-address screening to any export pipeline. We do not offer investment advice and mirror Dexly's own notice that leveraged perps carry significant risk.
A typical pipeline has four nodes and stays intentionally boring so it is easy to audit:
Every layer emits structured logs, and we ship a minimal Grafana dashboard (lag, error rate, per-wallet coverage) with the source code.
Dexly is marketed at active on-chain perp traders who want a clean mobile UI over Hyperliquid's order book. Typical users are self-directed retail and prosumer traders, solo quant operators, and small prop desks — not long-tail DeFi tourists. Regionally it follows Hyperliquid's own footprint: significant adoption in Asia-Pacific (Korea, Japan, Southeast Asia), strong activity in EU/UK power-user communities, and a growing US-technical audience. The app is available on both Google Play (Android) and the iOS App Store, with multi-wallet support (WalletConnect, email wallets via Privy), which makes it attractive to teams that share access across several devices while staying strictly non-custodial.
Tap any tile to enlarge. All images are sourced from the public store listing and illustrate the trading, portfolio and market-switch screens that correspond to the integration surfaces described above.
Teams that work with Dexly on Hyperliquid often operate alongside other on-chain perp venues. The list below is not a ranking — it simply reflects the ecosystem we encounter in integration projects. Each venue has its own data surface; a unified OpenData layer on top of several of them is a common request.
Multi-chain perp DEX (BNB, Ethereum, Solana, Arbitrum) that pushes very high leverage and stock-style perps. Similar data needs — positions, orders, funding — with an additional layer of yield-bearing collateral events to capture.
Professional on-chain order book on its own Cosmos app-chain. Integrators frequently ask for unified transaction exports across Dexly/Hyperliquid and dYdX, especially for fund reporting.
Pool-based (GLP) perp DEX on Arbitrum and Avalanche. The data model is different — LP positions and pool PnL — but it routinely sits next to Hyperliquid exposure in treasury dashboards.
ZK-rollup-based DEX on Ethereum with near-CEX performance. Its zero-fee retail structure and verifiable matching produce yet another orderbook feed that fits alongside Dexly in a multi-venue data lake.
Solana-native perp DEX using a hybrid DAMM/DLOB/JIT model. Users who bridge between Solana and Hyperliquid often need a single PnL view spanning both networks.
Derivatives-focused L2 known for pre-launch futures and unified margin. Integration patterns mirror Hyperliquid's — fills, funding, positions — with the extra wrinkle of options data.
Cross-chain aggregator routing across Arbitrum, BNB Chain, Avalanche and Optimism. Customers combining MUX with Dexly typically want a chain-agnostic order view.
Synthetix-powered perps front-end on Optimism. Its debt-pool model contrasts with Hyperliquid's book-based design, but the downstream reporting shape is similar.
Automated trading bot with a documented Hyperliquid integration — a good reference point for how non-custodial wallet-signed API flows can be productised for retail users.
Aggregator-style perp frontend across multiple chains. Integrators that list UniDex alongside Dexly usually need a normalised symbol map to reconcile identical instruments across venues.
We are a small, senior studio focused on App interface integration and authorized API integration. Our engineers come from mobile teams, fintech backends, derivatives exchanges and cloud platforms. We have shipped integrations against custodial exchanges, open-banking aggregators and, increasingly, on-chain perp venues like Hyperliquid, dYdX and Aevo.
Workflow stays the same regardless of venue: protocol analysis → build → validation → compliance. We prefer documented public APIs and authorized reverse engineering of app traffic over anything grey-area, and we sign NDAs and DPAs by default.
Customers describe the target app and what they need to do with the data; we deliver either runnable source code or a hosted endpoint that speaks a stable schema, with the paperwork, tests and dashboards that production teams actually care about.
Share the target app name (already known: Dexly — Trade on Hyperliquid) and a short description of the data or flows you need. We reply within one business day with scope, timeline and a fixed quote.
Prefer pay-per-call? Mention it in your message and we will provision a sandbox key on our hosted Dexly / Hyperliquid endpoints.
Do you need my seed phrase or private key?
What if Hyperliquid changes an endpoint?
Can you cover both Dexly Android and iOS traffic?
Do you handle multi-venue projects?
Trade on Hyperliquid | Dexly (package com.dexly.app) is a non-custodial trading interface for on-chain perpetual markets, built on Hyperliquid's high-performance infrastructure. Dexly does not hold funds, does not manage private keys or seed phrases, and does not provide investment or trading advice. Users stay in control of their wallet at all times.
On-chain perp trading — Long and short positions across supported markets, fast order execution, direct wallet-based access, built on Hyperliquid infrastructure.
Expanded market access — Crypto perpetual markets plus HIP-3 market support (indices, commodities and more), with smooth market switching.
Multi-wallet support — WalletConnect plus supported email-based wallets via third-party providers such as Privy; manage and switch between multiple wallets from one app.
Professional trading UI — Clean layout, quick access to size, leverage and order types, smooth UX designed for serious traders.
Advanced trading tools — Real-time charts, orderbook and market depth, funding information and market metrics, fast leverage and size controls, position and order management.
Portfolio & PnL tracking — Equity and margin overview, open positions and active orders, realized and unrealized PnL, simple portfolio tracking and clear risk visibility.
Secure, wallet-first access — Non-custodial by design, no custody of user funds, no seed phrase requests, and biometric login on supported devices.
Important notice — Dexly is an independent, non-custodial interface. All actions are executed through the connected wallet and the underlying on-chain infrastructure. Dexly cannot access funds, cannot recover private keys and cannot reverse blockchain transactions. Trading digital assets and leveraged perpetuals involves significant risk; users may lose some or all of their capital. Dexly does not provide investment, financial, legal or trading advice.