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
import requests

url = "https://api.international.coinbase.com/api/v1/fee-rate-tiers"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.international.coinbase.com/api/v1/fee-rate-tiers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.international.coinbase.com/api/v1/fee-rate-tiers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.international.coinbase.com/api/v1/fee-rate-tiers"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.international.coinbase.com/api/v1/fee-rate-tiers")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.international.coinbase.com/api/v1/fee-rate-tiers")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
[
  {
    "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