GET
/
api
/
v3
/
brokerage
/
transaction_summary
Get Transaction Summary
curl --request GET \
  --url https://api.coinbase.com/api/v3/brokerage/transaction_summary
{
  "total_volume": 1000,
  "total_fees": 25,
  "fee_tier": {
    "pricing_tier": "<$10k",
    "usd_from": "0",
    "usd_to": "10,000",
    "taker_fee_rate": "0.0010",
    "maker_fee_rate": "0.0020",
    "aop_from": "0",
    "aop_to": "10000",
    "perps_vol_from": "0",
    "perps_vol_to": "10000"
  },
  "margin_rate": 0.5,
  "goods_and_services_tax": {
    "rate": "<string>",
    "type": "<any>"
  },
  "advanced_trade_only_volume": 1000,
  "advanced_trade_only_fees": 25,
  "coinbase_pro_volume": 1000,
  "coinbase_pro_fees": 25,
  "total_balance": "1000"
}

Query Parameters

product_type
enum<string>
default:UNKNOWN_PRODUCT_TYPE

Only returns the orders matching this product type. By default, returns all product types.

Available options:
UNKNOWN_PRODUCT_TYPE,
SPOT,
FUTURE
contract_expiry_type
enum<string>
default:UNKNOWN_CONTRACT_EXPIRY_TYPE

Only returns the orders matching this contract expiry type. Only applicable if product_type is set to FUTURE.

Available options:
UNKNOWN_CONTRACT_EXPIRY_TYPE,
EXPIRING,
PERPETUAL
product_venue
enum<string>
default:UNKNOWN_VENUE_TYPE

Venue for product

Available options:
UNKNOWN_VENUE_TYPE,
CBE,
FCM,
INTX

Response

A successful response.

total_volume
number
required

Total volume across assets, denoted in USD.

Example:

1000

total_fees
number
required

Total fees across assets, denoted in USD.

Example:

25

fee_tier
object
required

Description of maker and taker rates across all applicable fee tiers.

margin_rate
object

Margin rate, only applicable to product_type FUTURE. Represents a decimal number with precision.

Example:

0.5

goods_and_services_tax
object
advanced_trade_only_volume
number

Advanced Trade volume (non-inclusive of Pro) across assets, denoted in USD.

Example:

1000

advanced_trade_only_fees
number

Advanced Trade fees (non-inclusive of Pro) across assets, denoted in USD.

Example:

25

coinbase_pro_volume
number

Coinbase Pro volume across assets, denoted in USD.

Example:

1000

coinbase_pro_fees
number

Coinbase Pro fees across assets, denoted in USD.

Example:

25

total_balance
string

Total balance across assets and products, which is comprised of the sum of spot, intx, and fcm, and denoted in USD.

Example:

"1000"