Skip to main content
GET
/
agents
/
{agent_id}
/
traces
Get traces for agent (AAP query alias)
curl --request GET \
  --url https://api.mnemom.ai/v1/agents/{agent_id}/traces \
  --header 'Authorization: Bearer <token>'
{
  "traces": [
    {
      "trace_id": "<string>",
      "agent_id": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "action": {
        "type": "<string>",
        "name": "<string>",
        "category": "<string>"
      },
      "decision": {
        "selected": "<string>",
        "selection_reasoning": "<string>",
        "values_applied": [
          "<string>"
        ],
        "confidence": 123
      },
      "verification": {
        "verified": true,
        "violations": [
          "<string>"
        ]
      },
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "limit": 123,
  "offset": 123
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Path Parameters

agent_id
string
required

Agent identifier (e.g. smolt-abc123)

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 1000
offset
integer
default:0
Required range: x >= 0

Response

List of traces

traces
object[]
limit
integer
offset
integer