> ## 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.

# 23 New Hyperliquid Info Endpoints Now Supported

*Published July 23, 2026*

![23 New Hyperliquid Info Endpoints Now Supported](https://www.datocms-assets.com/86369/1784922277-20260724-hyperliquid-info-endpoints.jpg)

GoldRush's Hyperliquid Info API just added 23 new `/info` methods, spanning order state, account economics, vaults, deploy auctions, and network status. Every method is wire-compatible with Hyperliquid's native `/info` endpoint — same request body, same response shape — so you can point existing Hyperliquid tooling at GoldRush for authenticated, rate-managed access without rewriting a line. This brings documented Info API coverage from **26 to 49 methods**.

| Category                | New methods                                                                                                                                                  |
| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Orders & risk           | `openOrders`, `liquidatable`, `maxMarketOrderNtls`, `perpsAtOpenInterestCap`                                                                                 |
| Accounts                | `userRole`, `userFees`, `userRateLimit`, `userBorrowLendInterest`, `userToMultiSigSigners`, `extraAgents`, `userAbstraction`, `delegations`, `maxBuilderFee` |
| Vaults                  | `vaultSummaries`, `vaultDetails`, `leadingVaults`                                                                                                            |
| Market config & deploys | `spotDeployState`, `perpDeployAuctionStatus`, `marginTable`, `perpDexLimits`                                                                                 |
| Network & status        | `allMids`, `exchangeStatus`, `validatorL1Votes`                                                                                                              |

**What this unlocks**

* Read live per-user order state — open orders, liquidation thresholds, and max order sizes — one call each.
* Pull account economics: fee tiers, rate limits, borrow/lend interest, builder fees, and delegations.
* Inspect vaults end to end, from summaries and leaderboards to full per-vault detail.
* Track market configuration and deploy auctions (spot & perp), margin tables, and HIP-3 perp DEX limits.
* Monitor network health with `allMids`, exchange status, and validator L1 votes.

**How to access it**
POST to the Hyperliquid Info endpoint with your GoldRush API key and the method name in the `type` field:

```bash theme={null}
curl -X POST https://hypercore.goldrushdata.com/info \
  -H "Authorization: Bearer $GOLDRUSH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type": "allMids"}'
```

[Learn more](https://goldrush.dev/docs/goldrush-hyperliquid/info-api/overview)
