GET
/
api
/
v3
/
brokerage
/
transaction_summary
Get Transaction Summary
curl --request GET \
  --url https://api.coinbase.com/api/v3/brokerage/transaction_summary \
  --header 'Authorization: Bearer <token>'
{
  "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",
    "futures_vol_from": "0",
    "futures_vol_to": "10000",
    "volume_types_and_range": [
      {
        "volume_types": [
          "VOLUME_TYPE_SPOT",
          "VOLUME_TYPE_US_DERIVATIVES"
        ],
        "vol_from": "0",
        "vol_to": "50000"
      }
    ]
  },
  "margin_rate": 0.5,
  "goods_and_services_tax": {
    "rate": "<string>",
    "type": "INCLUSIVE"
  },
  "advanced_trade_only_volume": 1000,
  "advanced_trade_only_fees": 25,
  "coinbase_pro_volume": 1000,
  "coinbase_pro_fees": 25,
  "total_balance": "1000",
  "volume_breakdown": [
    {
      "volume_type": "VOLUME_TYPE_SPOT",
      "volume": 1000
    }
  ]
}

Authorizations

Authorization
string
header
required

A JWT signed using your CDP API Key Secret, encoded in base64. Refer to the Creating API Keys section of our Coinbase App Authentication docs for information on how to generate your Bearer Token.

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.