curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "exchangeStatus"
}
'{
"universe": [
{
"name": "<string>",
"szDecimals": 123
}
]
}curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "exchangeStatus"
}
'{
"universe": [
{
"name": "<string>",
"szDecimals": 123
}
]
}info endpoint with type: "exchangeStatus" retrieves the current status of the Hyperliquid exchange, including information about all available trading assets and their configurations. This endpoint provides essential metadata about the exchange’s operational status and available markets.
type (string, required) — The request type. Must be "exchangeStatus" to retrieve exchange status information.universe (array) — List of all available assets on the exchange, each containing:
name (string) — Asset name or symbol (e.g., “BTC”, “ETH”, “SOL”)szDecimals (integer) — Number of decimal places used for size precision in tradinguniverse array provides comprehensive information about all tradeable assets:
curl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "exchangeStatus"}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
info endpoint with type: "exchangeStatus" is essential for trading applications that need to:
Request type to retrieve exchange status information
exchangeStatus Exchange status information
Was this page helpful?