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

# New Hyperliquid Info Endpoint

*Published May 1, 2026*

![New Hyperliquid Info Endpoint](https://www.datocms-assets.com/86369/1780000649-07_new_hyperliquid_info_endpoint.jpg)

A new endpoint, `https://hypercore.goldrushdata.com`, is now live as a **drop-in replacement for the public Hyperliquid `/info` API**. Same request body, same response shape - no rate limits, faster reads, and a growing set of supported types.

Point your existing `/info` clients at the new host and they keep working. The only thing that changes is what you can do with them at scale.

## What's new

* **No rate limits** - query as fast as your application needs to.
* **Faster reads** - backed by GoldRush's Hyperliquid infrastructure, with dedicated nodes and a private backbone.
* **Drop-in compatibility** - same request body, same response shape as the public `/info` API.
* **Progressively more capabilities** - additional `info` types and extensions ship continuously.

## Supported `info` types at launch

* `clearinghouseState`
* `spotClearinghouseState`
* `frontendOpenOrders`
* `metaAndAssetCtxs`
* `batchClearinghouseState`
* `batchSpotClearinghouseState`

Swap the host, keep your code:

```bash theme={null}
curl https://hypercore.goldrushdata.com/info \
  -H "Content-Type: application/json" \
  -d '{"type": "metaAndAssetCtxs"}'
```
