curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "perpDexStatus",
"dex": "xyz"
}
'{}curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "perpDexStatus",
"dex": "xyz"
}
'{}info endpoint with type: "perpDexStatus" retrieves the current status of a specific perp DEX on Hyperliquid, including total net deposits.
type (string, required) — The request type. Must be "perpDexStatus".dex (string, required) — Perp DEX name.totalNetDeposit (string) — Total net deposits in the perp DEX.curl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "perpDexStatus", "dex": "xyz"}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
{
"totalNetDeposit": "212751280.0536639988"
}
info endpoint with type: "perpDexStatus" is useful for:
Was this page helpful?