GET
/
api
/
v3
/
brokerage
/
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

200
application/json

A successful response.

The response is of type object.