069market_fee - coinexcom/coinex_exchange_api GitHub Wiki
Inquire Market Fee
-
Request description: Inquire market fee.
-
Request type: GET
-
Signature required: Yes
-
Request Header:
authorization:"xxxx"(32-digit capital letters, see generating method in <API invocation instruction>) -
Request Url:https://api.coinex.com/v1/account/market/fee
-
Request parameter:
name type required description access_id String Yes access_id tonce Integer Yes Tonce is a timestamp with a positive Interger that represents the number of milliseconds from Unix epoch to the current time. Error between tonce and server time can not exceed plus or minus 60s market String Yes See<API invocation description·market> business_type String No use SPOT or PERPETUAL, default to SPOT -
Return value description:
name description taker taker fee maker maker fee -
Example:
# Request
GET https://api.coinex.com/v1/account/market/fee?access_id=4DA36FFC61334695A66F8D29020EB589&tonce=1513746038205&market=BTCUSDT
# Response
{
"code": 0,
"data": {
"taker": "0.001",
"maker": "0.001"
},
"message": "Success"
}