Executions
/executions is the primary runtime trace view for agent turns, tool calls, and failures.
What you can inspect in UI
- user input and final model output
- tool-call payloads and tool execution results
- latency and token usage
- filtering by session, flow, pipeline, and date
API endpoints
Base path: /api/v1/executions
GET /api/v1/executions- list with filters/paginationGET /api/v1/executions/{id}- single execution detailPUT /api/v1/executions/{id}- update execution metadata/stateDELETE /api/v1/executions/{id}- delete single executionDELETE /api/v1/executions- delete multiple by body{"executionIds": ["id1", "id2"]}
List filters
Supported query params:
idagentflowIdagentflowNamesessionIdstate(INPROGRESS,FINISHED,ERROR,TERMINATED,TIMEOUT,STOPPED)pipelinestartDateendDatepagelimit
Example
curl "https://<your-flowise-host>/api/v1/executions?sessionId=session-1&limit=20" \
-H "Authorization: Bearer <apiKey>"