Withdraw

Withdraw

Apply for withdrawal

POST https://openapi.zke.com/sapi/v1/withdraw/apply

Headers

NameTypeDescription

X-CH-APIKEY*

String

Your API-key

X-CH-SIGN*

String

Sign

X-CH-TS*

Integer

timestamp

Request Body

NameTypeDescription

withdrawOrderId*

String

Custom withdrawal id, guaranteed to be unique

amount*

String

quantity

address*

String

Withdrawal address

label

String

Some currencies such as XRP, XMR allow filling of secondary address labels

symbol

String

currency name,For coins that support multiple mainchains, the actual currency name needs to be transmitted, as shown in Appendix

{
    "code":"Ѳ",//Return code, 0 for success, other failures
    "msg":"sucess",//returned messages
    "data":{
        "id":518353 //Platform withdrawal id
    }
}

weight(IP/UID): 100

Withdrawal record query

POST https://openapi.zke.com/sapi/v1/withdraw/query

Headers

NameTypeDescription

X-CH-APIKEY*

String

Your API-key

X-CH-SIGN*

String

Sign

X-CH-TS*

String

timestamp

Request Body

NameTypeDescription

symbol

String

Currency Name, For coins that support multiple mainchains, the actual currency name needs to be transmitted, as shown in Appendix 1

withdrawId

String

Platform withdrawal id

withdrawOrderId

String

Custom withdrawal id

startTime

String

Start time, timestamp, default 90 days ago

endTime

String

end time, timestamp, default current time

page

String

Page number, starting at 1

{
    "code": "0",
    "msg": "成功",
    "data": {
        "withdrawList": [
            {
                "symbol": "TUSDT",
                "amount": 19.99999,
                "address": "TFFrjNfBAagmFWypE3Hnv6zPKAFhd3VcDf",
                "withdrawOrderId": "abc123",
                "fee": 0.00001,
                "ctime": 1605585397000,
                "txId": "749864_20201117115930",
                "id": 749864,
                "applyTime": 1666754820000,
                "status": 5,
                "info": ""
            },
            {
                "symbol": "TUSDT",
                "amount": 10.50999,
                "address": "TYsTiVVDU5VmnUPufzGD52CD1hSbPATT3Q",
                "withdrawOrderId": "abc456",
                "fee": 0.00001,
                "ctime": 1607089149000,
                "txId": "764294_20201204094130",
                "id": 764294,
                "applyTime": 1666754820000",
                "status": 5,
                "info": ""
            }
        ],
        "count": 2
    }
}

weight(IP/UID): 100

Responses

ParameterTypeExampleRemark

symbol

String

USDT

Withdrawal currency

amount

Number

9.99

quantity

address

String

TFFrjNfBAagmFWypE3Hnv6zPKAFhd3VcDf

Withdrawal address

withdrawOrderId

String

abc123

Custom withdrawal id

fee

Number

0.01

fee

ctime

Number

1605585397000

creation time

txId

String

749864_20201117115930

Withdrawal transaction id

id

Number

749864

Platform withdrawal id

applyTime

Number

1605585397000

On-chain time

status

Number

2

Withdrawal status, 0-unapproved, 1-approved, 2-approved rejected, 3-payment, 4-payment failed, 5-completed, 6-revoked

info

String

Withdrawal address error

Review rejection reasons

Last updated