FruxonDocs
AgentsExecution Records

Gets the detailed trace of a specific execution.

Returns the full execution trace including all intermediate steps, tool calls, AI model interactions, and timing breakdowns.

GET
/v1/tenants/{tenant}/agents/{agent}/executionRecords/{executionRecord}:trace
AuthorizationBearer <token>

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

In: header

Path Parameters

agent*string

The unique identifier of the agent.

executionRecord*string

The execution record identifier.

tenant*string

The tenant identifier

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/agents/string/executionRecords/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"
  }
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}