curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "marginTable",
"id": 1
}
'{}curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "marginTable",
"id": 1
}
'{}info endpoint with type: "marginTable" retrieves a specific margin table by ID. Returns the margin tier configuration including description and leverage tiers.
type (string, required) — The request type. Must be "marginTable".id (integer, required) — Margin table ID.description (string) — Description of the margin table.marginTiers (array) — Array of margin tier objects with:
lowerBound (string) — Lower bound of the tier in USD.maxLeverage (integer) — Maximum leverage allowed for this tier.curl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "marginTable", "id": 1}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
{
"description": "",
"marginTiers": [
{
"lowerBound": "0.0",
"maxLeverage": 1
}
]
}
info endpoint with type: "marginTable" is useful for:
Was this page helpful?