> ## Documentation Index
> Fetch the complete documentation index at: https://goldrush.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Hyperliquid Info API Expands to 18 Types

*Published May 7, 2026*

![Hyperliquid Info API Expands to 18 Types](https://www.datocms-assets.com/86369/1780000650-05_hyperliquid_info_api_expands_to_18_types.jpg)

When the GoldRush [Hyperliquid Info API](/goldrush-hyperliquid/info-api/overview) 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.

```bash theme={null}
curl https://hypercore.goldrushdata.com/info \
  -H "Authorization: Bearer $GOLDRUSH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type": "userFillsByTime", "user": "0x...", "startTime": 1746662400000}'
```
