GET
/
clusters
/
{clusterId}
/
runs
/
{runId}

The /clusters/{clusterId}/runs/{runId} endpoint will return details for a single run, including its status and result (if available).

A run may take some time to complete. You can inspect the status to determine if it is finished:

StatusDescription
pendingThe Run has been created but not yet started processing.
runningThe Run is currently processing.
pausedThe Run is paused (e.g., waiting for an input request).
doneThe Run has completed.
failedThe Run failed. Please see failureReason for more information.

Please see Result Handlers for details on an asynchronous alternative for receiving Run results.

Headers

authorization
string
required

Path Parameters

clusterId
string
required
runId
string
required

Response

200 - application/json
id
string
required
jobHandle
string | null
required
userId
string | null
required
status
enum<string> | null
required
Available options:
pending,
running,
paused,
done,
failed
failureReason
string | null
required
test
boolean
required
feedbackComment
string | null
required
feedbackScore
number | null
required
result
string | null
required
summary
string | null
required
metadata
object | null
required
attachedFunctions
string[] | null
required