info (perpDexLimits)
Hyperliquid node API
perpDexLimits | Hyperliquid info
Reference for the perpDexLimits JSON-RPC method on the Hyperliquid info blockchain via Chainstack nodes. Parameters, response, and examples included.
POST
info (perpDexLimits)
This method is available on Chainstack. Not all Hyperliquid methods are available on Chainstack, as the open-source node implementation does not support them yet — see Hyperliquid methods for the full availability breakdown.
info endpoint with type: "perpDexLimits" retrieves the market limits for a builder-deployed perpetual DEX on Hyperliquid — the total open interest cap, the per-perpetual open interest size cap, the maximum transfer notional, and the per-asset open interest caps.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
Request body
type(string, required) — The request type. Must be"perpDexLimits".dex(string, required) — The name of the builder-deployed perp DEX, for example"xyz". The empty string is not allowed. Use perpDexs to list deployed perp DEX names.
Response
Returns a perp DEX limits object, ornull if the DEX has no configured limits.
totalOiCap(string) — Total open interest cap across the DEX.oiSzCapPerPerp(string) — Open interest size cap per perpetual.maxTransferNtl(string) — Maximum transfer notional amount.coinToOiCap(array) — Array of[coin, oiCap]tuples giving the open interest cap per asset.
Example request
Use your own endpoint in your code. The code examples use a placeholder Chainstack endpoint (YOUR_CHAINSTACK_ENDPOINT) — replace it with your own Hyperliquid node endpoint from the Chainstack console. The curl above uses a shared public endpoint for quick checks only; do not use it in production.
Example response
Use case
Theinfo endpoint with type: "perpDexLimits" is useful for:
- Checking the open interest caps of a builder-deployed perp DEX before opening positions
- Monitoring per-asset open interest caps on a perp DEX
- Building risk and deployment tools that validate against current market limits
Body
application/json
Response
200 - application/json
object | null
Perp DEX limit configuration
Last modified on July 7, 2026