Skip to main content
Published May 7, 2026 Hyperliquid Info API Expands to 18 Types When the GoldRush Hyperliquid Info API launched on May 1, it covered six info types - the core perp and spot state most clients ask for first. We’ve been shipping new types continuously since then, and the drop-in surface at POST https://hypercore.goldrushdata.com/info now covers eighteen wire-compatible types plus two GoldRush-native batch endpoints.

What’s new

Eleven additional info types are now live, spanning user history, vaults, and staking:
  • Market metadata - spotMetaAndAssetCtxs joins metaAndAssetCtxs for live spot universe + per-pair mark, mid, and day volume.
  • User account state - subAccounts returns every sub-account owned by a master with inlined perp and spot state.
  • User history - userFills, userFillsByTime, userTwapSliceFills, userFunding, and userNonFundingLedgerUpdates cover the full fill, funding, and ledger event history for any wallet.
  • Vaults and staking - userVaultEquities, delegatorSummary, delegatorHistory, and delegatorRewards return locked vault equity, staked HYPE totals, staking events, and accrued delegation rewards.
Every type is byte-for-byte identical to the upstream Hyperliquid response shape, so existing SDK code paths keep working after a baseUrl override - no client changes, no schema drift.
curl https://hypercore.goldrushdata.com/info \
  -H "Authorization: Bearer $GOLDRUSH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type": "userFillsByTime", "user": "0x...", "startTime": 1746662400000}'
Type expansion continues - see the roadmap for what’s next.