运行结果
方法: POST
端点: /api/v1/run/result/list
使用 Content-Type: application/json 发送请求体。
POST
/api/v1/run/result/listList run resultsRequired
Stored only in this browser tab. Sent only to https://openapi.coreclaw.com.
BodyRequiredapplication/json
FieldTypeRequiredDescription
page_indexinteger—1-based page index.page_sizeinteger—Page size.run_slugstringyesRun slug whose records should be listed.Request body (JSON)
{ "page_index": 1, "page_size": 20, "run_slug": "YOUR_RUN_SLUG"}| 参数 | 默认 | 示例值 | 类型 | 必填 | 说明 |
|---|---|---|---|---|---|
| page_index | 1 | 1 | Integer | 否 | 当前页码 |
| page_size | 10 | 20 | Integer | 否 | 每页条数 |
| run_slug | - | YOUR_RUN_SLUG | String | 是 | 运行唯一标识符 |
{ "code": 0, "message": "success", "data": { "count": 4, "headers": [ { "label": "title", "key": "title", "format": "text" }, { "label": "publish_time", "key": "publish_time", "format": "text" } ], "list": [ { "title": "示例文章标题", "publish_time": "2026-01-19" } ] }}| 参数 | 示例 | 类型 | 说明 |
|---|---|---|---|
| code | 0 | Integer | 全局状态码 |
| message | success | String | 响应消息 |
| data | - | Object | 响应数据 |
data 字段
Section titled “data 字段”| 参数 | 示例 | 类型 | 说明 |
|---|---|---|---|
| count | 4 | Integer | 总记录数 |
| headers | - | Array | 结果表头 |
| list | - | Array | 结果记录列表 |
| page_index | 1 | Integer | 当前页码 |
| page_size | 10 | Integer | 每页条数 |
headers 字段
Section titled “headers 字段”| 参数 | 示例 | 类型 | 说明 |
|---|---|---|---|
| label | - | String | 显示标签 |
| key | - | String | 字段键 |
| format | - | String | 字段格式 |
list[] 字段
Section titled “list[] 字段”list[] 中的每条记录包含 Worker 输出 schema 定义的字段,与 headers 中的 key 对应。
| 参数 | 示例 | 类型 | 说明 |
|---|---|---|---|
| coreclaw_data_id | - | String | 内部数据标识 |
| title | - | String | 条目标题 |
| publish_time | - | String | 发布时间 |
| category | - | String | 条目分类 |