cURL
curl --request GET \ --url https://your-deployment-api-url.pod.flowscale.ai/api/v1/runs/{run_id} \ --header 'X-API-KEY: <api-key>'
{ "status": "<string>", "data": { "workflow_id": "<string>", "group_id": "<string>", "status": "<string>", "inputs": [ {} ], "output_names": [ "<string>" ], "outputs": [ {} ], "created_at": "<string>", "started_at": "<string>", "completed_at": "<string>" }, "errors": "<string>", "meta": {} }
Retrieves detailed information about a specific run using its unique run ID.
Successful Response
The response is of type object.
object