Inquire User Trade Fee - coinexcom/coinex_exchange_api GitHub Wiki

Inquire User Trade Fee

  • Request description: Inquire User Trade 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/order/user/trade/fee

  • Return value description:

  • UserOrderTakerTradeFee = min(MarketTakerFee, UserTakerFee)
  • UserOrderMakerTradeFee = min(MarketMakerFee, UserMakerFee)

Market Fee info in Market Fee Info

name description
spot spot type, "ALL" means all market
perpetual perpetual type
maker maker fee rate, string, e.g. "0.002"
taker taker fee rate, string, e.g. "0.002"
  • Example:
# Request
GET https://api.coinex.com/v1/order/user/trade/fee?access_id=4DA36FFC61334695A66F8D29020EB589&tonce=1513746038205
# Response
{'code': 0,
 'data': {'perpetual': {'ALL': {'maker': '0.0002', 'taker': '0.0004'}},
          'spot': {'ALL': {'maker': '0.001', 'taker': '0.001'},
 'message': 'Succeeded'}