Executions
Query execution records and details
List Executions Endpoint
Query Parameters
status?|
Filter by status
page?integer
Page number
Default
1Range
1 <= valuepage_size?integer
Items per page
Default
50Range
1 <= value <= 100Response Body
application/json
application/json
curl -X GET "https://loading/executions"{
"executions": [
{
"workflow_execution_id": "string",
"workflow_id": "string",
"workflow_name": "string",
"status": "string",
"started_at": "string",
"completed_at": "string",
"completed_phases": 0,
"total_phases": 0,
"total_tokens": 0,
"total_cost_usd": "0",
"tool_call_count": 0
}
],
"total": 0,
"page": 1,
"page_size": 50
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}Get Execution Endpoint
Path Parameters
execution_id*string
Response Body
application/json
application/json
curl -X GET "https://loading/executions/string"{
"workflow_execution_id": "string",
"workflow_id": "string",
"workflow_name": "string",
"status": "string",
"started_at": "string",
"completed_at": "string",
"phases": [
{
"phase_id": "string",
"name": "string",
"status": "string",
"session_id": "string",
"artifact_id": "string",
"input_tokens": 0,
"output_tokens": 0,
"total_tokens": 0,
"duration_seconds": 0,
"cost_usd": "0",
"started_at": "string",
"completed_at": "string",
"error_message": "string",
"operations": [
{
"operation_id": "string",
"operation_type": "string",
"timestamp": "string",
"tool_name": "string",
"tool_use_id": "string",
"success": true
}
]
}
],
"total_input_tokens": 0,
"total_output_tokens": 0,
"total_tokens": 0,
"total_cost_usd": "0",
"total_duration_seconds": 0,
"artifact_ids": [
"string"
],
"error_message": "string"
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}Syntropic137 Docs v0.18.0 · Last updated March 2026