查询 NFT 操作记录
GET
/v1beta1/nft/nfts/{class_id}/{nft_id}/history根据查询条件,展示与应用相关的 NFT 链上操作记录
请求参数
Path 参数
class_id
string
NFT 类别 ID
nft_id
string
NFT ID
Query 参数
offset
string
游标,默认为 0
limit
string
可选
每页记录数,默认为 10,上限为 50
signer
string
Tx 签名者地址
tx_hash
string
可选
NFT 操作 Tx Hash
operation
string
可选
操作类型:mint / edit / transfer / burn
start_date
string
可选
NFT 操作日期范围 - 开始,yyyy-MM-dd(UTC 时间)
end_date
string
可选
NFT 操作日期范围 - 结束,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
总记录数
operation_records
array[object (empty object) {5}]
操作记录列表
示例
{
"data": {
"offset": 0,
"limit": 0,
"total_count": 0,
"operation_records": [
{
"tx_hash": "string",
"operation": "mint",
"signer": "string",
"recipient": "string",
"timestamp": "string"
}
]
}
}
最后修改时间: 1 年前