MCPcopy Create free account
hub / github.com/danpaquin/coinbasepro-python / get_fees

Method get_fees

cbpro/authenticated_client.py:1038–1049  ·  view source on GitHub ↗

Get your maker & taker fee rates and 30-day trailing volume. Returns: dict: Fee information and USD volume:: { "maker_fee_rate": "0.0015", "taker_fee_rate": "0.0025", "usd_volume": "25000.00"

(self)

Source from the content-addressed store, hash-verified

1036 return self._send_message('get', '/users/self/trailing-volume')
1037
1038 def get_fees(self):
1039 """ Get your maker & taker fee rates and 30-day trailing volume.
1040
1041 Returns:
1042 dict: Fee information and USD volume::
1043 {
1044 "maker_fee_rate": "0.0015",
1045 "taker_fee_rate": "0.0025",
1046 "usd_volume": "25000.00"
1047 }
1048 """
1049 return self._send_message('get', '/fees')

Callers 1

test_get_feesMethod · 0.80

Calls 1

_send_messageMethod · 0.80

Tested by 1

test_get_feesMethod · 0.64