Skip to main content
GET
/
api
/
v1
/
fee-rate-tiers
List fee rate tiers
curl --request GET \
  --url https://api.international.coinbase.com/api/v1/fee-rate-tiers
[
  {
    "fee_tier_type": "LIQUIDITY_PROGRAM",
    "instrument_type": "PERP",
    "fee_tier_id": 1,
    "fee_tier_name": "Public Tier 1",
    "maker_fee_rate": 0.02,
    "taker_fee_rate": 0.04,
    "min_balance": 1000,
    "min_volume": 1000,
    "require_balance_and_volume": true
  }
]
  • Java
  • .NET
  • Python
  • TS/JS
FeeRatesService feeRatesService = IntxServiceFactory.createFeeRatesService(client);
GetFeeRateTiersResponse response = feeRatesService.getFeeRateTiers();
For more information, please visit the INTX Java SDK.

Response

200 - application/json
fee_tier_type
enum<string>
Available options:
REGULAR,
LIQUIDITY_PROGRAM
Example:
instrument_type
enum<string>
Available options:
SPOT,
PERP
Example:
fee_tier_id
string
Example:
fee_tier_name
string
Example:
maker_fee_rate
string
Example:
taker_fee_rate
string
Example:
min_balance
string
Example:
min_volume
string
Example:
require_balance_and_volume
boolean