Coinbase · Schema
TransactionSummary
Summary of user transaction fees and volume
BlockchainCryptocurrencyCustodyExchangeOnrampPaymentsTradingWalletWeb3
Properties
| Name | Type | Description |
|---|---|---|
| total_volume | number | Total trading volume |
| total_fees | number | Total fees paid |
| fee_tier | object | Current fee tier information |
| advanced_trade_only_volume | number | Volume from Advanced Trade only |
| advanced_trade_only_fees | number | Fees from Advanced Trade only |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TransactionSummary",
"title": "TransactionSummary",
"type": "object",
"description": "Summary of user transaction fees and volume",
"properties": {
"total_volume": {
"type": "number",
"description": "Total trading volume"
},
"total_fees": {
"type": "number",
"description": "Total fees paid"
},
"fee_tier": {
"type": "object",
"description": "Current fee tier information",
"properties": {
"pricing_tier": {
"type": "string",
"description": "Current pricing tier name"
},
"usd_from": {
"type": "string",
"description": "Lower bound of the tier volume range"
},
"usd_to": {
"type": "string",
"description": "Upper bound of the tier volume range"
},
"taker_fee_rate": {
"type": "string",
"description": "Taker fee rate for the current tier"
},
"maker_fee_rate": {
"type": "string",
"description": "Maker fee rate for the current tier"
}
}
},
"advanced_trade_only_volume": {
"type": "number",
"description": "Volume from Advanced Trade only"
},
"advanced_trade_only_fees": {
"type": "number",
"description": "Fees from Advanced Trade only"
}
}
}