接入API

POST /api/v1/trade/page

查询商户的交易记录信息

请求

请求参数

名称类型是否必须描述
cidinteger(int64)cregis订单编号
tx_idstring交易hash
statusint交易状态【0-待确认 1-成功 2-失败】
trade_typeint交易类型【1-转入 2-转出】
business_typeint【0:普通交易 2:审核交易 3:地址收款 4:归集手续费 5:归集】
blocktime_startinteger(int64)区块时间-查询开始时间戳【10位】
blocktime_endinteger(int64)区块时间-查询结束时间戳【10位】
chain_idstring链编号chain_id
token_idstring代币编号
page_numint分页页数,如果不填,默认为1
page_sizeint分页每页数量,如果不填默认为10,如果填写了,限制最大值为100
pidinteger(int64)项目编号
noncestring6位随机字符串
timestampinteger(int64)时间戳
signstring签名
请求示例
{
    "cid": 1410580986806272,
    "tx_id": "0xa795af0324b1e3b862ae0c271bc8b3d99c7a1b72a6a0088a10c84403d0e6f27d",
    "status": 1,
    "trade_type": 1,
    "business_type": 3,
    "blocktime_start": 1721900581,
    "blocktime_end":1721998633,
    "chain_id": "2610",
    "token_id": "0x337610d27c682e347c9cd60bd4b3b107c9d34ddd",
    "page_num": 1,
    "page_size": 10,
    "pid": 1382528827416576,
    "remark": "payout",
    "nonce": "hwlkk6",
    "timestamp": 1688004243314,
    "sign": "d6eef2de79e39f434a38efb910213ba6"
}

返回

返回结果

名称类型描述
codestring返回码
msgstring返回信息
dataobject返回数据
返回数据 data 对象
名称类型描述
pidinteger(int64)项目编号
cidinteger(int64)系统流水号
chain_idstring链编号
token_idstring代币编号
currencystring币种标识
to_addressstringto地址
amountstring金额
statusinteger(int32)交易状态【0-待确认 1-成功 2-失败】
txidstring交易hash
block_heightstring区块高度
block_timeinteger(int64)区块时间
feestring交易费用
from_addressstringfrom地址
返回示例
{
    "code": "00000",
    "msg": "ok",
    "data": {
        "total": 1,
        "rows": [
            {
                "pid": 1409650233999360,
                "cid": 1410580986806272,
                "chain_id": "2610",
                "token_id": "0x337610d27c682e347c9cd60bd4b3b107c9d34ddd",
                "to_address": "0x2d4124dcf3ca13acaff5579e1aa962c968df9092",
                "amount": "0.1",
                "status": 1,
                "txid": "0xa795af0324b1e3b862ae0c271bc8b3d99c7a1b72a6a0088a10c84403d0e6f27d",
                "block_height": "42393516",
                "block_time": 1721900581,
                "fee": "0.00258015",
                "from_address": "0xbd5ba5a08849c8a2c8ef188778ec383682b0063b"
            }
        ],
        "pageNum": 1,
        "pageSize": 10
    }
}