maxMarketOrderNtls | Hyperliquid Info API
Info API
maxMarketOrderNtls | Hyperliquid Info API
Hyperliquid maxMarketOrderNtls: fetch the maximum market-order notional for each leverage bucket.
POST
maxMarketOrderNtls | Hyperliquid Info API
Credit Cost
1 per call
Processing
Realtime
type: "maxMarketOrderNtls" is used to fetch the maximum market-order notional for each leverage bucket.
- Wire-equal to
POST api.hyperliquid.xyz/infowith{"type": "maxMarketOrderNtls"}. - Each entry is a
[leverage, maxNotionalUsd]tuple; the notional is a decimal string. - This is a global, non-user-keyed type. Buckets are ordered from highest leverage to lowest.
[maxLeverage, maxNotional] tuple: a position running at up to maxLeverage may place a single market order of at most maxNotional USD. The cap tightens as leverage rises, bounding slippage on aggressive market orders.
Endpoint
Request
string
required
Always
"maxMarketOrderNtls".Example
Response
An array of[maxLeverage, maxNotional] tuples, ordered from highest leverage to lowest.
Field descriptions
The notional value in each tuple is returned as a decimal string, preserving upstream precision. Do not parse it as a float - keep it as a string or use a fixed-precision decimal type.
[int, string]
A
[maxLeverage, maxNotional] tuple. Index 0 is the maximum leverage (int) that the bucket applies to; index 1 is the maximum market-order notional in USD for that bucket, as a decimal string.