Skip to main content
GET
/
risk
/
history
/
{agent_id}
List historical risk assessments for an agent
curl --request GET \
  --url https://api.mnemom.ai/v1/risk/history/{agent_id} \
  --header 'Authorization: Bearer <token>'
{
  "assessments": [
    {
      "assessment_id": "<string>",
      "agent_id": "<string>",
      "risk_score": 123,
      "contributing_factors": [
        {}
      ],
      "suggested_thresholds": {},
      "explanation": "<string>",
      "proof_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "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:20
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0
include_playground
boolean
default:false

Response

History page.

assessments
object[]
total
integer
limit
integer
offset
integer