get-actor-run
Check the status and details of an Actor run, optionally waiting for it to finish. Returns run summary, storage info, and suggested next steps.
Instructions
Get detailed information about a specific Actor run.
Returns run result: status, storages (datasets/keyValueStores alias map), stats, summary, nextStep.
summary describes the past (e.g. "SUCCEEDED in 22s. 47 items; 3 fields available.").
nextStep prescribes one primary follow-up action with identifiers interpolated (e.g. "Use get-dataset-items with datasetId=...").
waitSecs (0–45, default 30) waits up to that many seconds for terminal status before returning.
USAGE:
Use to check the status of a run started with call-actor.
Pass waitSecs > 0 to block until terminal (or until the cap elapses).
If
call-actor-widgetorget-actor-run-widgetrendered a widget for this run, do NOT poll here — the widget self-polls.
USAGE EXAMPLES:
user_input: Show details of run y2h7sK3Wc
user_input: Wait for run y2h7sK3Wc to finish
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| runId | Yes | The ID of the Actor run. | |
| waitSecs | No | Maximum seconds to wait for the run to reach a terminal state (SUCCEEDED, FAILED, ABORTED, TIMED-OUT). 0 returns immediately with the current status. Cap: 45. Default: 30. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| runId | Yes | Actor run ID | |
| actorId | Yes | Stable Apify Actor ID from the run record | |
| actorName | No | "username/actor-name" | |
| status | Yes | Run status: READY | RUNNING | TIMING-OUT | TIMED-OUT | ABORTING | ABORTED | SUCCEEDED | FAILED | |
| statusMessage | No | Pass-through from Apify run.statusMessage | |
| exitCode | No | Actor process exit code; populated for terminal states (especially FAILED) | |
| startedAt | No | ISO timestamp when the run started | |
| finishedAt | No | ISO timestamp when the run finished (terminal states only) | |
| stats | No | Run statistics | |
| storages | Yes | Dataset and key-value store metadata, keyed by alias. "default" is always the primary entry. | |
| summary | Yes | Past-tense summary of the run state | |
| nextStep | Yes | One primary follow-up action with identifiers interpolated |