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.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The unique identifier of the agent.
The execution record identifier.
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"
},
"parentExecutionRecordId": "00000000-0000-0000-0000-000000000000",
"occurredAt": 0
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Gets the cross-config sandbox impact of this execution.
Returns one row per integration config the run touched in sandbox mode, with the pre-run snapshot id (if the session was auto-snapshotted), the diff against current state (added/modified/removed entities), and the simulator tool-call count. Backs the "Sandbox impact" card in AgentLab and on the execution detail page. Vendor-routed configs do not appear here — they are surfaced on the frontend from the agent revision's bound configs.
Gets the agent's judge-verdict counts (+ average score) for the operator overview Quality card.
Returns passed / failed / scored counts, the average run-level score, and a pass rate over the requested origin + window. Null/null window covers all time; otherwise it defaults to 30 days before to, mirroring the cost-timeseries windowing so the surfaces reconcile.