061get_withdraw_list - coinexcom/coinex_exchange_api GitHub Wiki
-
Request description: Inquire withdrawal list.
-
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/balance/coin/withdraw
-
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 coin_type String No Coin type, e.g. BCH. Filter its withdrawal list when the parameter is passed. coin_withdraw_id Integer No Coin withdrawal id. Search its withdrawal record when the parameter is passed. page Interger No Page, start from 1 Limit Interger No Amount per page(1-100) -
Return value description:
name description coin_withdraw_id coin withdrawal id create_time create time amount withdrawal amount actual_amount actual withdrawal amount tx_id tx id coin_address withdrawal address tx_fee tx fee confirmations confirmations coin_type coin type status audit;
pass;
processing;
confirming;
not_pass;
cancel;
finish;
fail; -
Example:
# Request
GET https://api.coinex.com/v1/balance/coin/withdraw?access_id=4DA36FFC61334695A66F8D29020EB589&tonce=1513746038205&coin_type=BCH
# Response
{
"code": 0,
"data": [
{
"actual_amount": "1.00000000",
"amount": "1.00000000",
"coin_address": "1KAv3pazbTk2JnQ5xTo6fpKK7p1it2RzD4",
"coin_type": "BCH",
"coin_withdraw_id": 206,
"confirmations": 0,
"create_time": 1524228297,
"status": "audit",
"tx_fee": "0",
"tx_id": ""
},
{
"actual_amount": "0.10000000",
"amount": "0.10000000",
"coin_address": "15sr1VdyXQ6sVLqeJUJ1uPzLpmQtgUeBSB",
"coin_type": "BCH",
"coin_withdraw_id": 203,
"confirmations": 11,
"create_time": 1515806440,
"status": "finish",
"tx_fee": "0",
"tx_id": "896371d0e23d64d1cac65a0b7c9e9093d835affb572fec89dd4547277fbdd2f6"
},
{
"actual_amount": "0.01000000",
"amount": "0.01000000",
"coin_address": "1GVVx5UBddLKrckTprNi4VhHSymeQ8tsLF",
"coin_type": "BCH",
"coin_withdraw_id": 68,
"confirmations": 6,
"create_time": 1514978728,
"status": "finish",
"tx_fee": "0",
"tx_id": "f08802fea6745c07e420b92356cf3bcdaa78a00c4a062ef0b9e2de06a3f4d718"
},
{
"actual_amount": "0.00100000",
"amount": "0.00100000",
"coin_address": "1GVVx5UBddLKrckTprNi4VhHSymeQ8tsLF",
"coin_type": "BCH",
"coin_withdraw_id": 27,
"confirmations": 0,
"create_time": 1513933541,
"status": "cancel",
"tx_fee": "0",
"tx_id": ""
}
],
"message": "Ok"
}