Skip to content

Run Result

Method: POST

Endpoint: /api/v1/run/result/list

Send the request body with 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"
}
ParameterDefaultExampleTypeRequiredDescription
page_index11IntegerNoCurrent page number
page_size1020IntegerNoItems per page
run_slug-YOUR_RUN_SLUGStringYesUnique run identifier
{
"code": 0,
"message": "success",
"data": {
"count": 4,
"headers": [
{
"label": "title",
"key": "title",
"format": "text"
},
{
"label": "publish_time",
"key": "publish_time",
"format": "text"
}
],
"list": [
{
"title": "Example Article Title",
"publish_time": "2026-01-19"
}
]
}
}
ParameterExampleTypeDescription
code0IntegerGlobal status code
messagesuccessStringResponse message
data-ObjectResponse payload
ParameterExampleTypeDescription
count4IntegerTotal record count
headers-ArrayResult table headers
list-ArrayResult record list
page_index1IntegerCurrent page number
page_size10IntegerItems per page
ParameterExampleTypeDescription
label-StringDisplay label
key-StringField key
format-StringField format

Each item in list[] contains the fields defined by the Worker’s output schema, matching the key values in headers.

ParameterExampleTypeDescription
coreclaw_data_id-StringInternal data identifier
title-StringItem title
publish_time-StringPublish time
category-StringItem category