Skip to content
Alchemy Logo

Margin table

This API is in private preview. Target October 2026; timing is subject to change.

Returns the leverage tiers for one perpetual margin-table identifier.

Available now. This read is served at the interim endpoint today.

POST /{apiKey}/info

| Parameter | Type | Required | Description | | --- | --- | --- | | type | string | Yes | Selects marginTable. | | id | integer | Yes | Margin-table identifier, such as a market's marginTableId from meta. |

{
  "type": "marginTable",
  "id": 56
}

FieldTypeDescription
descriptionstringHuman-readable margin-table label.
marginTiersarrayOrdered notional thresholds and their maximum leverage limits.
marginTiers[].lowerBoundstringMinimum notional at which the tier applies.
marginTiers[].maxLeverageintegerMaximum leverage permitted in the tier.

{
  "description": "tiered 40x",
  "marginTiers": [
    { "lowerBound": "0.0", "maxLeverage": 40 },
    { "lowerBound": "150000000.0", "maxLeverage": 20 }
  ]
}
Was this page helpful?