Run Detail
Method: POST
Endpoint: /api/v1/run/detail
Send the request body with Content-Type: application/json.
Try it
Section titled “Try it”POST
/api/v1/run/detailGet run detailRequired
Stored only in this browser tab. Sent only to https://openapi.coreclaw.com.
BodyRequiredapplication/json
FieldTypeRequiredDescription
run_slugstringyesUnique run identifier returned by CoreClaw.Request body (JSON)
Request Example
Section titled “Request Example”{ "run_slug": "YOUR_RUN_SLUG"}Parameters
Section titled “Parameters”| Parameter | Example | Type | Required | Description |
|---|---|---|---|---|
| run_slug | YOUR_RUN_SLUG | String | Yes | Unique run identifier |
Response Example
Section titled “Response Example”{ "code": 0, "message": "success", "data": { "status": 2, "err_msg": "", "slug": "01KSFDS8XWTJME33C08XMCR6B9", "scraper_title": "News Collection 20260305", "scraper_slug": "01KPD6M5YVHWCNQCRK32BD02TP", "results": 4, "usage": "0.0217", "started_at": 1773383784, "finished_at": 0, "duration": 0, "origin": "api", "traffic": 0, "version": "v1.0.5" }}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 |
| status | 3 | Integer | Run status: 1 Ready, 2 Running, 3 Succeeded, 4 Failed, 5 Aborted |
| err_msg | - | String | Error message |
| slug | 01KSFDS8XWTJME33C08XMCR6B9 | String | Unique run identifier |
| scraper_title | News Collection 20260305 | String | Worker title |
| scraper_slug | 01KPD6M5YVHWCNQCRK32BD02TP | String | Unique Worker identifier |
| results | 4 | Integer | Number of collected results |
| usage | 0.0217 | String | Device usage cost in USD |
| started_at | 1773383784 | Integer | Start timestamp |
| finished_at | 0 | Integer | Finish timestamp |
| duration | 0 | Integer | Execution duration in seconds |
| origin | api | String | Run source: api or web |
| traffic | 0 | Integer | Traffic usage in bytes |
| version | v1.0.5 | String | Worker version |
Error Response
Section titled “Error Response”{ "code": 4000, "message": "Invalid request parameters", "data": null}