Skip to content

Run History

Method: POST

Endpoint: /api/v1/run/list

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

{
"page": 1,
"page_size": 20,
"status": 0,
"scraper_slug": "01KJYCSVTDCM7078HNB4Z5RJE2"
}
ParameterDefaultTypeRequiredDescription
page1IntegerYesCurrent page number
page_size20IntegerYesItems per page. Options: 10, 20, 50
status0IntegerYesRun status: 0 All, 1 Ready, 2 Running, 3 Succeeded, 4 Failed, 5 Aborted
scraper_slug-StringYesUnique Worker identifier
{
"code": 0,
"message": "success",
"data": {
"count": 106,
"list": [
{
"status": 3,
"err_msg": "",
"slug": "01KKGKQ89XN5HYD7JYKCC9C32H",
"scraper_title": "News Collection 20260305",
"scraper_slug": "01KJXYJ7KCHXM0PDZHQD5293XE",
"results": 4,
"usage": "0.065",
"started_at": 1773305309,
"finished_at": 1773305316,
"duration": 7,
"origin": "api",
"traffic": 23108,
"version": "v1.0.1"
}
]
}
}
ParameterExampleTypeDescription
code0IntegerGlobal status code
messagesuccessStringResponse message
data-ObjectResponse payload
ParameterExampleTypeDescription
count0IntegerTotal record count
list-ArrayRun record list
status3IntegerRun status: 1 Ready, 2 Running, 3 Succeeded, 4 Failed, 5 Aborted
slug01KKGKQ89XN5HYD7JYKCC9C32HStringUnique run record identifier
scraper_titleNews Collection 20260305StringWorker title
scraper_slug01KJXYJ7KCHXM0PDZHQD5293XEStringUnique 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.1StringWorker version
{
"code": 4000,
"message": "Invalid request parameters",
"data": null
}