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
  }
]
FeeRatesService feeRatesService = IntxServiceFactory.createFeeRatesService(client);
GetFeeRateTiersResponse response = feeRatesService.getFeeRateTiers();
For more information, please visit the INTX Java SDK.

Response

200 - application/json

Fee rate tiers list

fee_tier_type
enum<string>

The type of fee tier

Available options:
REGULAR,
LIQUIDITY_PROGRAM
Example:

"LIQUIDITY_PROGRAM"

instrument_type
enum<string>

The type of instrument

Available options:
SPOT,
PERP
Example:

"PERP"

fee_tier_id
string

Fee tier id

Example:

1

fee_tier_name
string

Name for the fee rate tier

Example:

"Public Tier 1"

maker_fee_rate
string

The fee rate charged for order making liquidity

Example:

0.02

taker_fee_rate
string

The fee rate charged for orders taking liquidity

Example:

0.04

min_balance
string

The minimum USDC balance required to qualify for the fee tier

Example:

1000

min_volume
string

The minimum 30 days volume required to qualify for the fee tier. For liquidity program tiers, this is the percentage of volume

Example:

1000

require_balance_and_volume
boolean

Whether the fee tier requires both a minimum balance and volume to qualify