Skip to main content
POST
/
4f8d8f4040bdacd1577bff8058438274
/
info
info (perpDexLimits)
curl --request POST \
  --url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "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.
The info endpoint with type: "perpDexLimits" retrieves the configuration limits for perpetual DEXes on Hyperliquid, including maximum number of assets and other deployment constraints.
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".

Response

The response contains the perp DEX deployment limits and configuration constraints.

Example request

Shell
curl -X POST \
  -H "Content-Type: application/json" \
  -d '{"type": "perpDexLimits"}' \
  https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info

Example response

null

Use case

The info endpoint with type: "perpDexLimits" is useful for:
  • Checking deployment constraints before deploying a new perp DEX
  • Understanding the maximum number of assets allowed per DEX
  • Building deployment tools that validate against current limits

Body

application/json
type
enum<string>
default:perpDexLimits
required

Request type

Available options:
perpDexLimits

Response

200 - application/json

Perp DEX limit configuration

The response is of type object.

Last modified on February 17, 2026