Error
A valid request URL is required to generate request examples{
"executions": [
{
"id": "<string>",
"flowId": "<string>",
"flowName": "<string>",
"userId": "<string>",
"userName": "<string>",
"status": "running",
"strategy": "<string>",
"startedAt": "<string>",
"completedAt": "<string>",
"totalDurationMs": 123,
"totalSteps": 123,
"outputSummary": "<string>",
"errorMessage": "<string>",
"totalTokenUsage": {
"inputTokens": 123,
"outputTokens": 123,
"totalTokens": 123,
"cacheReadTokens": 123,
"cacheCreationTokens": 123,
"reasoningTokens": 123,
"model": "<string>"
},
"_ttl": 123
}
],
"count": 123
}Flows
List past executions for the current user across all flows
Returns executions initiated by the authenticated user, ordered by start time descending. Includes aggregated token usage per execution.
GET
/
flow
/
executions-by-user
Error
A valid request URL is required to generate request examples{
"executions": [
{
"id": "<string>",
"flowId": "<string>",
"flowName": "<string>",
"userId": "<string>",
"userName": "<string>",
"status": "running",
"strategy": "<string>",
"startedAt": "<string>",
"completedAt": "<string>",
"totalDurationMs": 123,
"totalSteps": 123,
"outputSummary": "<string>",
"errorMessage": "<string>",
"totalTokenUsage": {
"inputTokens": 123,
"outputTokens": 123,
"totalTokens": 123,
"cacheReadTokens": 123,
"cacheCreationTokens": 123,
"reasoningTokens": 123,
"model": "<string>"
},
"_ttl": 123
}
],
"count": 123
}Was this page helpful?