Gets the result of a specific execution.
Returns the final output and metadata, including response content, token usage, and timing information.
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:result"{
"agentExecutionRecordId": "00000000-0000-0000-0000-000000000000",
"agentId": "string",
"agentRevision": 0,
"parameters": {},
"result": {
"strValue": "string",
"jsonValue": null,
"fileLink": "string"
},
"createdAt": 0,
"tenantId": "00000000-0000-0000-0000-000000000000"
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Gets the raw OTLP spans archived for this execution.
Returns each span as we received it from the customer's tracer, no platform mapper applied. Used by the trace sidebar's "raw OTel" view and by external tooling driven off the source-of-truth (mapper validation, attribute audits). Empty `spans` array means the execution didn't go through OTLP ingest (native agent, or external run that emitted no spans).
Lists evaluation samples derived from this execution — one per dataset the execution is tagged into.
Returns the cross-reference rows created by `POST .../executionRecords/{executionRecord}:addToDatasets`, each pointing at the dataset it was added to along with its quality label and tags. Useful for showing "this run is in N datasets" affordances in the trace UI and for callers building dataset-curation tooling. Returns an empty list (not 404) if the execution exists but has never been added to a dataset.