FruxonDocs
ApiWorkflow runs

Gets the step trace of a Workflow run.

Returns the detailed execution trace, including intermediate steps, tool calls, model interactions, and timing data. The run must belong to the Workflow identified in the route.

GET
/v1/tenants/{tenant}/workflows/{workflow}/runs/{run}/trace
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

workflow*string

The unique identifier of the Workflow.

run*string

The unique identifier of the Workflow run.

tenant*string

The tenant identifier

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/workflows/string/runs/string/trace"
{
  "status": "IN_PROGRESS",
  "trace": {
    "agentExecutionRecordId": "00000000-0000-0000-0000-000000000000",
    "agentId": "string",
    "agentRevision": 0,
    "startTime": 0,
    "endTime": 0,
    "traces": [
      {
        "id": "string",
        "displayName": "string",
        "type": "UNSPECIFIED",
        "llmStepTrace": null,
        "toolTrace": null,
        "hitlTrace": null,
        "steps": [],
        "result": null,
        "status": "UNSPECIFIED",
        "error": "string",
        "startTime": 0,
        "endTime": 0,
        "duration": 0
      }
    ],
    "createdAt": 0,
    "tenantId": "00000000-0000-0000-0000-000000000000"
  },
  "parentExecutionRecordId": "00000000-0000-0000-0000-000000000000",
  "occurredAt": 0
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}