Retrieve the output of a completed workflow run
curl https://api.origamiagents.com/api/v1/workflows/wf_abc123/runs/run_xyz789/async/response \ -H "x-origami-key: your-api-key"
{ "success": true, "data": { "row_1": { "summary": "AI-generated summary of the input document...", "sentiment": "positive", "confidence": 0.95 } } }
completed
Show Output structure
output_destination
{ "success": true, "data": { "row_1": { "summary": "This is the generated summary text..." } } }
{ "success": true, "data": { "row_1": { "title": "Generated Title", "description": "Generated description text...", "tags": ["tag1", "tag2", "tag3"] } } }
{ "success": true, "data": { "row_1": { "result": "Output for first input" }, "row_2": { "result": "Output for second input" }, "row_3": { "result": "Output for third input" } } }