Skip to main content
POST
/
4f8d8f4040bdacd1577bff8058438274
/
info
info (perpDexStatus)
curl --request POST \
  --url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "perpDexStatus",
  "dex": "xyz"
}
'
{}
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: "perpDexStatus" retrieves the current status of a specific perp DEX on Hyperliquid, including total net deposits.
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 "perpDexStatus".
  • dex (string, required) — Perp DEX name.

Response

The response is an object containing:
  • totalNetDeposit (string) — Total net deposits in the perp DEX.

Example request

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

Example response

{
  "totalNetDeposit": "212751280.0536639988"
}

Use case

The info endpoint with type: "perpDexStatus" is useful for:
  • Monitoring the total value locked in a perp DEX
  • Building analytics dashboards that track DEX growth
  • Comparing deposit levels across different perp DEXes

Body

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

Request type

Available options:
perpDexStatus
dex
string
default:xyz
required

Perp DEX name

Response

200 - application/json

Status of the specified perp DEX

The response is of type object.

Last modified on February 17, 2026