Get account fees
GET/account
Returns your current trading fees from the default Category A based on the trading volume of your account.
info
This is a private endpoint. To send requests, you need to authenticate.
Rate limit weight points: 1
Responses
- 200
- 4XX
The request was successful.
- application/json
- Schema
- Example (body)
Schema
fees object
The trading fees and volume for your account.
takerstring
The fee for trades that take liquidity from the order book.
Example:
0.0025makerstring
The fee for trades that add liquidity to the order book.
Example:
0.0015volumestring
Your trading volume in the last 30 days measured in EUR.
Example:
10000.00{
"fees": {
"taker": "0.0025",
"maker": "0.0015",
"volume": "10000.00"
}
}
For error codes, see Handle errors.