跳转至

钱包提币

地址/openApi/wallet/withdraw

接收参数

需要

提交方式: POST

API Key 权限:提币

示例

curl -d /openApi/wallet/withdraw

提交参数

参数名 是否必填 类型 示例 说明
address string 0x77a41... 地址(仅支持官网提币列表中的地址)
amount string 0.5 数量
currency string BTC 币种(仅支持官网资产列表所支持的可提币币种)
chain string ERC20 链(支持币种以及链类型查看币种充提信息)
memo string 598 标签

返回参数

参数名 是否必填 类型 示例 说明
errno int 0 状态码
errmsg success success 状态信息
result list 见示例 列表

result参数说明

参数名 是否必填 类型 示例 说明
withdrawId string 500 提币记录id

返回示例

JSON
{
    "errno": 0,
    "errmsg": "success",
    "result":
        {
            "withdrawId": "500"
        }
}