Skip to content

Get Tiers

Retrieve the current fee-tier configuration used by the exchange. Tiers include maker/taker fee rates, minimum trade volume thresholds, open-order caps, subaccount limits, and borrow capacity.

Endpoint

POST https://papi.synthetix.io/v1/info

Request

Request Format

{
  "params": {
    "action": "getTiers"
  }
}

Request Parameters

ParameterTypeRequiredDescription
params.actionstringYesMust be "getTiers"

Response

Success Response

{
  "status": "ok",
  "response": [
    {
      "tierId": "tier_1",
      "tierType": "volume",
      "tierName": "Tier 1",
      "minTradeVolume": "100000",
      "makerFeeRate": "0.0002",
      "takerFeeRate": "0.0005",
      "maxSubAccounts": 5,
      "maxOrdersPerMarket": 15,
      "maxTotalOrders": 75,
      "maxBorrowCapacity": "0"
    }
  ],
  "request_id": "5ccf215d37e3ae6d"
}

Response Fields

FieldTypeDescription
tierIdstringStable tier identifier
tierTypestringTier category
tierNamestringHuman-readable tier name
minTradeVolumestringMinimum rolling trade volume required for the tier
makerFeeRatestringMaker fee rate as a decimal string
takerFeeRatestringTaker fee rate as a decimal string
maxSubAccountsintegerMaximum subaccounts allowed for the tier
maxOrdersPerMarketintegerMaximum open orders per market
maxTotalOrdersintegerMaximum open orders across all markets
maxBorrowCapacitystringBorrow capacity for the tier

Error Handling

Error CodeDescriptionRetryable
UNAUTHORIZEDEIP-712 signature validation failedNo
VALIDATION_ERRORRequest validation failedNo
MISSING_REQUIRED_FIELDRequired field is missingNo
INVALID_FORMATField format is invalidNo
INVALID_VALUEInvalid parameter valueNo
RATE_LIMIT_EXCEEDEDToo many requests in time windowYes
INSUFFICIENT_MARGINNot enough margin for tradeNo
ORDER_NOT_FOUNDOrder does not existNo
OPERATION_TIMEOUTOperation timed outYes
ErrorDescription
Could not retrieve tiersTier configuration could not be retrieved from the backend

Related Endpoints

  • Tiers - Tier rules and order-limit behavior
  • Get Subaccount - Current tier and fee rates for a subaccount