跳转到内容

运行结果

方法: POST

端点: /api/v1/run/result/list

使用 Content-Type: application/json 发送请求体。

POST/api/v1/run/result/listList run results
Required

Stored only in this browser tab. Sent only to https://openapi.coreclaw.com.

BodyRequiredapplication/json
FieldTypeRequiredDescription
page_indexinteger1-based page index.
page_sizeintegerPage size.
run_slugstringyesRun slug whose records should be listed.
Request body (JSON)
{
"page_index": 1,
"page_size": 20,
"run_slug": "YOUR_RUN_SLUG"
}
参数默认示例值类型必填说明
page_index11Integer当前页码
page_size1020Integer每页条数
run_slug-YOUR_RUN_SLUGString运行唯一标识符
{
"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"
}
]
}
}
参数示例类型说明
code0Integer全局状态码
messagesuccessString响应消息
data-Object响应数据
参数示例类型说明
count4Integer总记录数
headers-Array结果表头
list-Array结果记录列表
page_index1Integer当前页码
page_size10Integer每页条数
参数示例类型说明
label-String显示标签
key-String字段键
format-String字段格式

list[] 中的每条记录包含 Worker 输出 schema 定义的字段,与 headers 中的 key 对应。

参数示例类型说明
coreclaw_data_id-String内部数据标识
title-String条目标题
publish_time-String发布时间
category-String条目分类