Skip to content

Run History

Method: POST

Endpoint: /api/v1/run/list

Send the request body with Content-Type: application/json.

POST/api/v1/run/listList runs
Required

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

BodyRequiredapplication/json
FieldTypeRequiredDescription
page_indexintegeryes1-based page index.
page_sizeintegeryesPage size.
statusenum (6)Optional status filter. `0` means all statuses.
scraper_slugstringOptional scraper filter.
Request body (JSON)
{
"page_index": 1,
"page_size": 20,
"status": 0,
"scraper_slug": "YOUR_SCRAPER_SLUG"
}
ParameterDefaultTypeRequiredDescription
page_index1IntegerYesCurrent page number
page_size20IntegerYesItems per page
status0IntegerNoRun status: 0 All, 1 Ready, 2 Running, 3 Succeeded, 4 Failed, 5 Aborted
scraper_slug-StringNoUnique Worker identifier
{
"code": 0,
"message": "success",
"data": {
"count": 106,
"list": [
{
"status": 3,
"err_msg": "",
"slug": "01KSFDS8XWTJME33C08XMCR6B9",
"scraper_title": "News Collection 20260305",
"scraper_slug": "01KPD6M5YVHWCNQCRK32BD02TP",
"results": 4,
"usage": "0.065",
"started_at": 1773305309,
"finished_at": 1773305316,
"duration": 7,
"origin": "api",
"traffic": 23108,
"version": "v1.0.5"
}
]
}
}
ParameterExampleTypeDescription
code0IntegerGlobal status code
messagesuccessStringResponse message
data-ObjectResponse payload
ParameterExampleTypeDescription
count106IntegerTotal record count
list-ArrayRun record list
ParameterExampleTypeDescription
status3IntegerRun status: 1 Ready, 2 Running, 3 Succeeded, 4 Failed, 5 Aborted
err_msg-StringError message
slug01KSFDS8XWTJME33C08XMCR6B9StringUnique run record identifier
scraper_titleNews Collection 20260305StringWorker title
scraper_slug01KPD6M5YVHWCNQCRK32BD02TPStringUnique Worker identifier
results4IntegerNumber of collected results
usage0.065StringDevice usage cost in USD
started_at1773305309IntegerStart timestamp
finished_at1773305316IntegerFinish timestamp
duration7IntegerExecution duration in seconds
originapiStringRun source: api or web
traffic23108IntegerTraffic usage in bytes
versionv1.0.5StringWorker version
{
"code": 4000,
"message": "Invalid request parameters",
"data": null
}