Executions

Query execution records and details

List Executions Endpoint

GET
/executions

Query Parameters

status?|

Filter by status

page?integer

Page number

Default1
Range1 <= value
page_size?integer

Items per page

Default50
Range1 <= value <= 100

Response 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

GET
/executions/{execution_id}

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

On this page