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"
}
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Removes all evaluation samples derived from this execution
Deletes every sample row across every dataset that was sourced from this execution; use this to fully retract a run from evaluation tooling when it was tagged in error or contains data that shouldn't be retained. Only the dataset cross-references are removed — the underlying execution record, its trace, and any cost data are kept intact. Returns 204 even when there were no samples to delete.
Gets the change history for an agent.
Returns a chronological list of all changes made to the agent, including configuration updates, deployments, and metadata changes.