Run Result
Method: POST
Endpoint: /api/v1/run/result/list
Send the request body with Content-Type: application/json.
Try it
Section titled “Try it”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)
Request Example
Section titled “Request Example”{ "page_index": 1, "page_size": 20, "run_slug": "YOUR_RUN_SLUG"}Parameters
Section titled “Parameters”| Parameter | Default | Example | Type | Required | Description |
|---|---|---|---|---|---|
| page_index | 1 | 1 | Integer | No | Current page number |
| page_size | 10 | 20 | Integer | No | Items per page |
| run_slug | - | YOUR_RUN_SLUG | String | Yes | Unique run identifier |
Response Example
Section titled “Response Example”{ "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" } ] }}Response Fields
Section titled “Response Fields”| Parameter | Example | Type | Description |
|---|---|---|---|
| code | 0 | Integer | Global status code |
| message | success | String | Response message |
| data | - | Object | Response payload |
data Fields
Section titled “data Fields”| Parameter | Example | Type | Description |
|---|---|---|---|
| count | 4 | Integer | Total record count |
| headers | - | Array | Result table headers |
| list | - | Array | Result record list |
| page_index | 1 | Integer | Current page number |
| page_size | 10 | Integer | Items per page |
headers Fields
Section titled “headers Fields”| Parameter | Example | Type | Description |
|---|---|---|---|
| label | - | String | Display label |
| key | - | String | Field key |
| format | - | String | Field format |
list[] Fields
Section titled “list[] Fields”Each item in list[] contains the fields defined by the Worker’s output schema, matching the key values in headers.
| Parameter | Example | Type | Description |
|---|---|---|---|
| coreclaw_data_id | - | String | Internal data identifier |
| title | - | String | Item title |
| publish_time | - | String | Publish time |
| category | - | String | Item category |