Data
GET/api/v1/cex/fees
Get trading fees.
Request
Query Parameters
exchange string
Specifies exchange
Example: binance
symbol string
Specifies symbol
Example: BTC-USDT
Header Parameters
X-DTMX-APIKEY stringrequired
Your DataMaxi+ API key
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
base string
specifies base symbol
Example:
BTC
exchange string
specifies exchange
Example:
binance
futures_maker_fee number
specifies maker fee percentage for futures market
Example:
0.0001
futures_taker_fee number
specifies taker fee percentage for futures market
Example:
0.0001
quote string
specifies quote symbol
Example:
USDT
spot_maker_fee number
specifies maker fee percentage for spot market (e.g. 0.001 = 0.1%)
Example:
0.001
spot_take_fee number
specifies taker fee percentage for spot market
Example:
0.001
symbol string
specifies symbol
Example:
BTC-USDT
[
{
"base": "BTC",
"exchange": "binance",
"futures_maker_fee": 0.0001,
"futures_taker_fee": 0.0001,
"quote": "USDT",
"spot_maker_fee": 0.001,
"spot_take_fee": 0.001,
"symbol": "BTC-USDT"
}
]
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error string
error
specifies the error message
{
"error": "string"
}
Loading...