Skip to main content

Retrieve Agent Run Details

GET/api/v1/workflow/{workflow_id}/runs/{run_id}

cURL example

curl -X GET \
  'http://localhost:8000/api/v1/workflow/{workflow_id}/runs/{run_id}' \
  -H 'Authorization: Bearer <API_KEY>'

Parameters

NameLocationTypeDescription
workflow_idrequiredpathinteger
run_idrequiredpathinteger
authorizationheaderobject
X-API-Keyheaderobject

Responses

200Successful Response
application/json
View schema
{
  "$ref": "#/components/schemas/WorkflowRunResponseSchema"
}
404Not found
422Validation Error
application/json
View schema
{
  "$ref": "#/components/schemas/HTTPValidationError"
}