Runs
Get a Run
Retreive details about a specific run
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:
Status | Description |
---|---|
pending | The Run has been created but not yet started processing. |
running | The Run is currently processing the agent loop. |
paused | The Run is paused (e.g., waiting for an approval). |
done | The Run has completed. A result and summary should have been produced. |
failed | The Run failed. Please see failureReason for more information. |
Please see OnStatusChange for details on an asynchronous alternative for receiving Run results.
Headers
authorization
string
requiredPath Parameters
clusterId
string
requiredrunId
string
requiredResponse
200 - application/json
id
string
requireduserId
string | null
requiredstatus
enum<string> | null
requiredAvailable options:
pending
, running
, paused
, done
, failed
failureReason
string | null
requiredtest
boolean
requiredfeedbackComment
string | null
requiredfeedbackScore
number | null
requiredresult
object | null
requiredmetadata
object | null
requiredattachedFunctions
string[] | null
requiredWas this page helpful?