Skip to main content
GET
/
transactions
/
{id}
Get transaction details
curl --request GET \
  --url https://api.mnemom.ai/v1/transactions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "agent_id": "<string>",
  "status": "pending",
  "actions": [
    {
      "tool": "<string>",
      "status": "<string>",
      "result": "<unknown>"
    }
  ],
  "evaluation": {
    "verdict": "pass",
    "violations": [
      {
        "type": "forbidden",
        "tool": "<string>",
        "capability": "<string>",
        "rule": "<string>",
        "reason": "<string>",
        "severity": "low"
      }
    ],
    "warnings": [
      {
        "tool": "<string>",
        "message": "<string>"
      }
    ],
    "card_gaps": [
      {
        "capability": "<string>",
        "missing_card_field": "<string>",
        "suggestion": "<string>"
      }
    ],
    "coverage": 0.5
  },
  "created_at": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Path Parameters

id
string
required

Transaction identifier

Response

Transaction details

id
string
agent_id
string
status
enum<string>
Available options:
pending,
approved,
blocked,
escalated,
completed,
failed
actions
object[]
evaluation
object

Result of evaluating a CLPI policy against a set of tools or traces.

created_at
string<date-time>
completed_at
string<date-time> | null