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
}| Field | Type | Description |
|---|---|---|
description | string | Human-readable margin-table label. |
marginTiers | array | Ordered notional thresholds and their maximum leverage limits. |
marginTiers[].lowerBound | string | Minimum notional at which the tier applies. |
marginTiers[].maxLeverage | integer | Maximum leverage permitted in the tier. |
{
"description": "tiered 40x",
"marginTiers": [
{ "lowerBound": "0.0", "maxLeverage": 40 },
{ "lowerBound": "150000000.0", "maxLeverage": 20 }
]
}