Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.coinversa.ai/llms.txt

Use this file to discover all available pages before exploring further.

Pulse runs an indexer against Hyperliquid L1 + builder dexes + HIP-4. This page covers what’s tracked, how often it updates, and the historical bounds you should expect.

What’s indexed

DataSourceUpdated
All Hyperliquid wallet tradesL1 historical clearinghouseContinuous
Live positions (longs, shorts, leverage)L1 clearinghouse stateEvery block (~1s)
Market data (mark, OI, funding, candles)HL info/stats APIs5–10s cache
Liquidation eventsL1 user-action streamContinuous, from 2026-01-01
L1 mark price historyL1 mark-price streamContinuous, from 2026-01-01
Builder dex trades + positionsPer-dex sub-accountsContinuous
HIP-4 outcome trades + settlementsL1 trades on outcome coinsContinuous, from 2026-05-02
Cohort classificationRollup over historical tradesRecomputed daily

Cutoffs

Some endpoints have hard historical floors because the underlying data collection started after Hyperliquid mainnet:
  • Risk metrics (liquidations, mark dislocations, user-action–derived signals) — clamped to 2026-01-01. Earlier since requests are silently truncated to that floor.
  • HIP-4 outcomes — clamped to 2026-05-02 (mainnet launch). Earlier since requests are silently truncated.
  • Cohort tiers — recomputed daily. Wallets active for less than ~1 week may not yet have a tier assigned.
Per-tier max historical windows are documented in authentication.

Freshness

The /live/* endpoints are designed for near-real-time use. Typical freshness:
Endpoint familyFreshness
live/long-short, live/cohort-bias1–5s
live/liquidation-heatmap, live/risk/*1–5s
live/oi-history, live/official-oi10s cache
pulse/market-overview, pulse/global-stats10s cache
pulse/leaderboard, pulse/hidden-gems30s cache, pre-warmed
market/price, market/orderbookDirect passthrough, no cache
The pulse_market_overview response includes generatedAt timestamps so you can measure staleness server-side.

What’s not indexed

  • Spot trades on non-canonical pairs (@N indexes) — present in raw data, not classified into cohorts.
  • Off-chain orderflow (RFQ, OTC) — only on-chain L1 fills are captured.
  • Private user information (KYC, beneficial ownership) — addresses are public; wallets are not de-anonymized.

How recent is “recent”?

Tools that take a since parameter accept a number plus unit:
  • m — minutes (e.g. 10m)
  • h — hours (e.g. 24h)
  • d — days (e.g. 7d)
  • w — weeks (e.g. 2w, on long-history endpoints only)
Or use explicit startTime / endTime (unix ms or ISO date) for exact ranges. Both are validated against your tier’s max window — see authentication.