查询 MT 类别
GET
/v1beta1/mt/classes根据查询条件,展示 AVATA 平台内的 MT 类别列表
请求参数
Query 参数
offset
string
游标,默认为 0
limit
string
可选
每页记录数,默认为 10,上限为 50
id
string
MT 类别 ID
name
string
可选
MT 类别名称,支持模糊查询
owner
string
可选
MT 类别权属者地址
tx_hash
string
可选
创建 MT 类别的 Tx Hash
start_date
string
可选
MT 类别创建日期范围 - 开始,yyyy-MM-dd(UTC 时间)
end_date
string
可选
MT 类别创建日期范围 - 结束,yyyy-MM-dd(UTC 时间)
sort_by
string
可选
排序规则:DATE_ASC / DATE_DESC(默认)
Header 参数
Content-Type
string
必需
固定值:application/json
X-Api-Key
string
必需
项目 API Key,用于 API 访问鉴权
X-Timestamp
string
必需
时间戳,1970年1月1日0点0分0秒到现在的毫秒数
X-Signature
string
必需
API 签名,算法为SHA256(Params+Timestamp+ApiSecret)
示例代码
返回响应
successful operation(200)
successful operation
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
data
object
正确返回值
offset
integer
游标
limit
integer
每页记录数
total_count
integer
总记录数
classes
array [object {6}]
类别列表
示例
{
"data": {
"offset": 0,
"limit": 0,
"total_count": 0,
"classes": [
{
"id": "string",
"name": "string",
"mt_count": 0,
"owner": "string",
"tx_hash": "string",
"timestamp": "string"
}
]
}
}
最后修改时间: 1 年前