v1

latestOpenAPI 3.0.32026-07-267278168.1 KB
Positions

Get Leverage

Returns the current leverage setting(s) for the authenticated account. If market is provided, returns leverage for that market only; otherwise returns leverage for all markets. For how leverage and margin work, see Leverage.

get/v1/perps/leverage

Query parameters

marketstring
Example:AAPL-USD.P

Filter by market. If omitted, returns leverage for all markets.

Response

Array of leverage settings

successboolean required

Whether the request was successful

errorstring

Error message, present only on failure

error_codestring

Semantic error code. See each endpoint's error responses for the specific codes it can return.

deprecatedstring

Deprecation notice, if applicable

Example response

{
  "success": true,
  "result": [
    {
      "market": "AAPL-USD.P",
      "leverage": "10"
    }
  ]
}