Data
GET/api/v1/trading-fees
Fetch trading fees.
Request
Query Parameters
exchange string
Specifes exchange
Example: binance
symbol string
Specifies symbol
Example: BTC-USDT
Header Parameters
X-DTMX-APIKEY stringrequired
Your DataMaxi+ API key
Responses
- 200
- 400
- 401
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
apiSymbol string
base string
exchange string
exchangeSymbol string
makerFee number
specifies maker fee percentage (e.g. 0.001 = 0.1%)
Example:
0.001
quote string
takerFee number
specifies taker fee percentage
Example:
0.001
uniqueBaseId string
[
{
"apiSymbol": "string",
"base": "string",
"exchange": "string",
"exchangeSymbol": "string",
"makerFee": 0.001,
"quote": "string",
"takerFee": 0.001,
"uniqueBaseId": "string"
}
]
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
error
specifies the error message
{
"error": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error string
error
specifies the error message
{
"error": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error string
error
specifies the error message
{
"error": "string"
}
Loading...