Skip to main content
POST
/
4f8d8f4040bdacd1577bff8058438274
/
info
info (marginTable)
curl --request POST \
  --url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "marginTable",
  "id": 1
}
'
{}
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: "marginTable" retrieves a specific margin table by ID. Returns the margin tier configuration including description and leverage tiers.
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 "marginTable".
  • id (integer, required) — Margin table ID.

Response

The response is an object containing:
  • 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.

Example request

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

Example response

{
  "description": "",
  "marginTiers": [
    {
      "lowerBound": "0.0",
      "maxLeverage": 1
    }
  ]
}

Use case

The info endpoint with type: "marginTable" is useful for:
  • Looking up specific margin tier configurations by ID
  • Displaying leverage limits for different position size tiers
  • Building risk management tools that account for tiered leverage
  • Validating leverage settings against margin table constraints

Body

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

Request type

Available options:
marginTable
id
integer
default:1
required

Margin table ID

Response

200 - application/json

Margin table configuration

The response is of type object.

Last modified on February 17, 2026