FruxonDocs
AgentsExecution Records

Gets the summary record for a single execution.

Returns the same Fruxon.Model.ExecutionTraces.AgentExecutionRecordResponse shape every item in the list endpoint carries — start/end times, status, token counts, cost breakdown — just for one specific record id. Cheap follow-up to a streaming run: SSE emits the `executionRecordId` in the final `done` event so callers can fetch the canonical summary by id without paging through history.

GET
/v1/tenants/{tenant}/agents/{agent}/executionRecords/{executionRecord}
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"
{
  "id": "00000000-0000-0000-0000-000000000000",
  "agentId": "string",
  "agentRevision": 0,
  "remoteAgentRevision": "string",
  "startTime": 0,
  "endTime": 0,
  "status": "IN_PROGRESS",
  "deliveryStatus": "NOT_APPLICABLE",
  "inputTokens": 0,
  "outputTokens": 0,
  "cachedTokens": 0,
  "hasResult": false,
  "hasTrace": false,
  "isSample": false,
  "trigger": {
    "type": "API",
    "id": "string",
    "provider": "string"
  },
  "destinations": [
    {
      "connectorId": "string",
      "provider": "string"
    }
  ],
  "environmentSlug": "string",
  "createdAt": 0,
  "tenantId": "00000000-0000-0000-0000-000000000000",
  "inputCost": 0,
  "outputCost": 0,
  "cachedCost": 0,
  "thinkingCost": 0,
  "totalCost": 0
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}