v1

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-05-044743166.6 KB
runs

Retrieve run result

Returns the execution result of a completed run. Returns 404 if the run doesn't exist or hasn't finished yet.

get/api/v1/runs/{runId}/result

Response

Successful request

okboolean required

Whether the run completed successfully.

idstring required

The run ID.

outputstring

The serialized output as a string (present when ok is true). Use outputType to determine how to parse it — for "application/json" use JSON.parse().

outputTypestring

The content type of the serialized output, e.g. "application/json".

errorobject

Error details (present when ok is false).

taskIdentifierstring

The task identifier.