Quickstart
Inference API
AI Flows
AI Workflows API
AI Workflow Execution API
AI Workflow Operations
AI Workflow Templates API
Model Deployment
AI Workflow Execution API
Get Bulk Execution
Get a list of workflow executions
POST
/
api
/
v1
/
{workflowID}
/
executions
/
bulk
curl --request POST \
--url https://flows.eachlabs.ai/api/v1/{workflowID}/executions/bulk \
--header 'Content-Type: application/json' \
--data '{
"execution_ids": [
"<string>"
]
}'
{
"status": "<string>",
"total": 123,
"executions": [
{
"flow_id": "<string>",
"average_percent": 123,
"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>",
"output_json": {},
"input": "<string>"
}
],
"status": "<string>",
"output": "<string>",
"output_json": {},
"created_at": "<string>",
"started_at": "<string>",
"ended_at": "<string>",
"updated_at": "<string>",
"deleted_at": "<string>"
}
]
}
Path Parameters
Workflow ID
Body
application/json
Response
200
application/json
GetExecutionsResponse JSON
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://flows.eachlabs.ai/api/v1/{workflowID}/executions/bulk \
--header 'Content-Type: application/json' \
--data '{
"execution_ids": [
"<string>"
]
}'
{
"status": "<string>",
"total": 123,
"executions": [
{
"flow_id": "<string>",
"average_percent": 123,
"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>",
"output_json": {},
"input": "<string>"
}
],
"status": "<string>",
"output": "<string>",
"output_json": {},
"created_at": "<string>",
"started_at": "<string>",
"ended_at": "<string>",
"updated_at": "<string>",
"deleted_at": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.