直达内容

Read Withdrawal Address List

GET /assets/:asset_id/addresses

Get a list of withdrawal addresses for the given asset.

API 端点 URL

 https://api.mixin.one/assets/:asset_id/addresses

授权和其他选项

授权
Authorized
限制No limitation

参数

asset_id
*必须
the asset's id which you are requesting the withdrawal addresses for

请求示例

curl -i -X GET -H "Content-Type: application/json" -H "Authorization: Bearer $TOKEN" https://api.mixin.one/assets/43d61dcd-e413-450d-80b8-101d5e903357/addresses
Response
{
"data":[
{
"type": "address",
"address_id": "e1524f3c-2e4f-411f-8a06-b5e1b1601308",
"asset_id": "43d61dcd-e413-450d-80b8-101d5e903357",
"destination":"0x86Fa049857E0209aa7D9e616F7eb3b3B78ECfdb0",
"tag": "",
"label": "Eth Address",
"fee_asset_id": "43d61dcd-e413-450d-80b8-101d5e903357",
"fee": "0.016",
"reserve": "0",
"dust": "0.0001",
"updated_at": "2018-07-10T03:58:17.5559296Z"
},
...
]
}