v106

OpenAPI 3.1.0raw.githubusercontent.com2026-08-02160524464.6 KB
Run Internals

Retrieve Run Checkpoint

Returns the latest checkpoint data for a run, or null if no checkpoint has been recorded yet.

get/api/v1/runs/{id}/checkpoint

Path parameters

idstring required

Unique run identifier (ULID).

Response

Checkpoint data (null if not yet available)

timestampstring date-time required

ISO 8601 timestamp when the checkpoint was created.

current_nodestring required

Identifier of the node being executed at checkpoint time.

completed_nodesstring[] required

Identifiers of nodes that have completed execution.

node_retriesobject required

Map of node identifier to retry count.

context_valuesobject required

Key-value context map accumulated during execution.

node_outcomesobject

Map of node identifier to outcome data for goal gate checks after resume.

next_node_idstring

The node to resume execution at after this checkpoint.

git_commit_shastring

SHA of the git commit created at this checkpoint.

loop_failure_signaturesobject

Failure signature counts within the main loop.

restart_failure_signaturesobject

Failure signature counts across loop_restart edges.