拉取账户创造资产列表
接口描述
- 本接口用于分页拉取账户创造资产列表,按创建时间倒序排序
请求结构
POST /xasset/horae/v1/listastbyaddr HTTP/1.1
Host: xuper.baidu.com
Authorization: Authorization string
Content-Type: application/x-www-form-urlencoded;charset=utf-8
status={status}
&addr={addr}
&page={page}
&limit={limit}
请求头域
请求参数
参数名 |
参数类型 |
是否可选 |
参数说明 |
status |
int |
可选 |
资产状态,默认全部。0:全部 1:初始 3:发行中 4:发行成功 |
addr |
string |
必选 |
创建资产账户地址 |
page |
int |
必选 |
要拉取页数,第一页为1 |
limit |
int |
可选 |
默认20,最大50 |
响应头域
响应参数
参数名 |
参数类型 |
参数说明 |
list |
array |
资产信息列表 |
total_cnt |
int |
总条目数 |
请求示例
Post xasset/horae/v1/listastbyaddr
Host: xuper.baidu.com
Authorization: bce-auth-v1/f81d3b34e48048fbb2634dc7882d7e21/2022-04-18T04:17:29Z/3600/host/74c506f68c65e26c633bfa104c863fffac5190fdec1ec24b7c03eb5d67d2e1de
status=4
&addr=uoiu789nknmsfsfds
&page=1
&limit=20
响应示例
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Date: Wed, 18 Apr 2022 03:28:11 GMT
X-Trace-Id: "1182282645"
{
"errno": 0,
"request_id": "1182282645",
"list": [
{
"asset_id": 1234123123,
"asset_cate": 1,
"title": "猫的报恩",
"thumb": [
{
"urls": {
"icon": "https://xxx",
"url1": "https://xxx",
"url2": "https://xxx",
"url3": "https://xxx"
},
"width": "3000",
"height": "2000"
}
],
"short_desc": "猫咪的可爱,仅此一份",
"img_desc": [
"https://xxx"
],
"status": 2,
"amount": 10,
"price": 1000,
"create_addr": "WcrGMFUSxGrvBhk96aPtkxMWU4YEtCmZp",
"group_id": 0,
"tx_id": "23857a8dabf6b749a3xxxx742a90877b630eaa56"
}
],
"total_cnt":10
}