cURL
curl --request GET \ --url https://your-deployment-api-url.pod.flowscale.ai/api/v1/runs \ --header 'X-API-KEY: <api-key>'
{ "status": "<string>", "data": { "group_id": "<string>", "count": 123, "runs": [ { "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 a list of all runs associated with a specific group ID. Useful for aggregating and managing related runs.
Successful Response
The response is of type object.
object