100acquire_credit_account_info - coinexcom/coinex_exchange_api GitHub Wiki
# Acquire Credit Account Info
-
Request description: Acquire Credit Account Info
-
Request type: GET
-
Signature required: Yes
-
Request Url:https://api.coinex.com/v1/credit/info
-
Example:
# Request
GET https://api.coinex.com/v1/credit/info
# Response
{
"code": 0,
"data": {
"withdraw_rate": "1.3", # can withdraw rate
"trade_rate": "1.11", # can trade rate
"current_balance": "234.45", # current balance usd
"unflat_balance":"10.01", # unflat balance usd
"can_withdraw_balance": "22.3", # can withdraw balance usd
"can_trade_balance": "10.2", # can trade balance usd
"current_rate": "1.3" # current rate
},
"message": "Ok"
}