代付手续费查询
接口地址
POST https://api.tokenpay.me/v1/payanother/estimated_fee
接口参数
接口返回
名称
类型
必选
说明
msg
string
true
状态说明
request_id
string
true
data
object
false
数据对象
chain
string
所属公链
currency
string
货币
to_address
string
收款钱包
fee
string
手续费
decimals
string
订单金额精度
返回示例
{
"code": 0,
"msg": "ok",
"request_id": "0f262d68-a7bc-4ff4-beeb-994a1e6bcd53",
"data": {
"chain": "TRON",
"currency": "USDT",
"to_address": "TPKcSZqWWAJyE7KTKUveSfgWM75sZrr9JG",
"fee": "2500000",
"decimals": 6
}
}
代码示例
curl --location --request POST 'https://api.tokenpay.me/v1/payanother/estimated_fee'
--header 'Authorization: '
--header 'User-Agent: tokenpay API (https://tokenpay.me)'
--header 'Content-Type: application/json'
--data-raw ''
Last updated