curl --request GET \
--url https://api.mnemom.ai/v1/agents/{agent_id}/reclassifications \
--header 'Authorization: Bearer <token>'{
"reclassifications": [
{
"reclassification_id": "<string>",
"checkpoint_id": "<string>",
"agent_id": "<string>",
"original_type": "<string>",
"new_type": "<string>",
"reason": "<string>",
"score_impact": {
"previous_score": 123,
"new_score": 123,
"delta": 123
}
}
],
"total": 123
}Retrieve the history of all checkpoint reclassifications for the specified agent. Each entry includes the original and reclassified type, reason, and score impact.
curl --request GET \
--url https://api.mnemom.ai/v1/agents/{agent_id}/reclassifications \
--header 'Authorization: Bearer <token>'{
"reclassifications": [
{
"reclassification_id": "<string>",
"checkpoint_id": "<string>",
"agent_id": "<string>",
"original_type": "<string>",
"new_type": "<string>",
"reason": "<string>",
"score_impact": {
"previous_score": 123,
"new_score": 123,
"delta": 123
}
}
],
"total": 123
}Supabase JWT token in Authorization: Bearer header
Agent identifier (e.g. smolt-abc123)
Maximum number of records to return
1 <= x <= 100Number of records to skip for pagination
x >= 0