curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "perpCategories"
}
'[
[
"<string>"
]
]curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "perpCategories"
}
'[
[
"<string>"
]
]info endpoint with type: "perpCategories" retrieves all HIP-3 perpetual assets that have a category set via setPerpAnnotation. Returns an array of [coin, category] tuples, or an empty array if no deployers have set categories.
type (string, required) — The request type. Must be "perpCategories".deployer:TICKER format."indices", "commodities", "ai", "meme", "defi", "gaming", "layer1", "layer2", "stocks", "forex").
curl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "perpCategories"}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
[
["xyz:GOLD", "commodities"],
["xyz:SPX", "indices"],
["abc:AGENT", "ai"]
]
[]
info endpoint with type: "perpCategories" is useful for:
Request type
perpCategories Array of perpetual category classifications
Was this page helpful?