> For the complete documentation index, see [llms.txt](https://docs.cn.omnibridge.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cn.omnibridge.pro/intent/solver-jie-ru/solver-cha-xun-ding-dan-jie-kou.md).

# Solver查询订单接口

**1. 接口调用：**

```
https://{host}/gt/swap/intent/queryOrder
```

**2. 请求参数示例**

| 参数           | 是否必须 | 说明       |
| ------------ | ---- | -------- |
| pageNo       | 否    | 页码       |
| pageSize     | 否    | 单页最大数    |
| solverCode   | 是    | Solver编号 |
| solverSecret | 是    | Solver密钥 |
| timestamp    | 是    | 时间戳（毫秒）  |

**3.请求参数示例**

```ada
{
    "pageNo":"1",
    "pageSize":"30",
    "solverSecret":"asdfg",
    "timestamp":1785822731000,
    "solverCode":"test"
}
```

**4.返回结果示例**

```
{
  "resCode": "800",
  "resMsg": "成功",
  "data": {
    "totalCount": 4,
    "pageSize": 3,
    "pageNo": 1,
    "totalPage": 2,
    "pageContent": [
      {
        "intentId": "111",
        "solverCode": "aaa",
        "solverAddress": "asdf",
        "sendCoinAmt": "8",
        "sendCoinCode": "USDC(ETH)",
        "dstTxHash": "0xe4cb9590006fa1bd99bcdf85d5546998766b4db1002ea2c67d22daf268bd9460",
        "sendTxHash": null,
        "status": "submitted",
        "createTime": "2026-06-29 19:04:04"
      },
      {
        "intentId": "112",
        "solverCode": "aaa",
        "solverAddress": "asdf",
        "sendCoinAmt": "6",
        "sendCoinCode": "USDC(ARB)",
        "dstTxHash": "0xe4cb9590006fa1bd99bcdf85d5546998766b4db1002ea2c67d22daf268bd9460",
        "sendTxHash": "0xe4cb9590006fa1bd99bcdf85d5546998766b4db1002ea2c67d22daf268bd9460",
        "status": "success",
        "createTime": "2026-06-29 19:04:04"
      }
    ]
  }
}
```

**5.返回参数说明**

<table data-header-hidden><thead><tr><th width="192.2000732421875">字段名称</th><th width="184">字段</th><th width="100">数据类型</th><th width="319">备注</th></tr></thead><tbody><tr><td>solver订单号</td><td>intentId</td><td>String</td><td>eg：111</td></tr><tr><td>solver编码</td><td>solverCode</td><td>String</td><td>eg：aaa</td></tr><tr><td>solver地址</td><td>solverAddress</td><td>String</td><td>eg：0x123456</td></tr><tr><td>发用户的金额</td><td>sendCoinAmt</td><td>String</td><td>eg：20</td></tr><tr><td>发用户的币种     </td><td>sendCoinCode</td><td>String</td><td>eg：USDC(ARB)</td></tr><tr><td>Solver发给用户的hash</td><td>dstTxHash</td><td>String</td><td>eg：0x123456789</td></tr><tr><td>发送Solver的hash</td><td>sendTxHash</td><td>String</td><td>eg：0x123456789</td></tr><tr><td>订单状态</td><td>status</td><td>String</td><td><p>wait_deposits：待存币</p><p>submitted：solver已提交发币Hash</p><p>complete：完成（兑换成功）</p><p>timeout：超时</p><p>locked：用户已存币</p><p>confirm：给solver发送代币待链上确认</p></td></tr></tbody></table>
