Skip to main content
POST
/
exchange
/
info
Generic HL info passthrough
curl --request POST \
  --url https://hyper.polynode.dev/exchange/info \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "allMids"
}
'

Documentation Index

Fetch the complete documentation index at: https://hypernode-docs.polynode.dev/llms.txt

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

Generic passthrough that accepts any HyperLiquid info request body. Use this for any query type not covered by the dedicated endpoints. The request body is forwarded to HyperLiquid’s /info endpoint as-is. The response is returned unchanged. This means any future HyperLiquid query type works automatically without us shipping new endpoints.

Example

curl -X POST https://hyper.polynode.dev/exchange/info \
  -H 'Content-Type: application/json' \
  -d '{"type": "userRateLimit", "user": "0xc64cc00b46150e9274d09efc945c951710c4ef02"}'

Use cases

  • Query types we haven’t built dedicated endpoints for yet
  • Newly added HyperLiquid info methods
  • Specialized debugging or one-off queries
  • Building your own client library against the full HL API surface

Query Parameters

network
string
default:mainnet

Body

application/json

The body is of type object.

Response

200

HL info response (forwarded as-is)