cURL
curl --request GET \ --url https://flows.eachlabs.ai/api/v1/{workflowID}/executions/{execID}
{ "flow_id": "<string>", "flow_name": "<string>", "organization_id": "<string>", "api_key": "<string>", "execution_id": "<string>", "source_ip_address": "<string>", "parameters": [ { "name": "<string>", "value": "<string>" } ], "step_results": [ { "step_id": "<string>", "step_name": "<string>", "model": "<string>", "version": "<string>", "started_at": "<string>", "ended_at": "<string>", "status": "<string>", "output": "<string>", "input": "<string>" } ], "status": "<string>", "output": "<string>", "created_at": "<string>", "started_at": "<string>", "ended_at": "<string>", "updated_at": "<string>", "deleted_at": "<string>" }
Please make sure that you parse output as JSON if you are using it in a workflow
curl --request GET \ --url https://flows.eachlabs.ai/api/v1/{workflowID}/executions/{execID} \ --header "X-API-KEY: YOUR_API_KEY_HERE"
Workflow ID
Execution JSON
Show child attributes
Was this page helpful?