cURL
curl --request GET \ --url https://api.memoclaw.com/v1/memories/{id}/history
{ "history": [ { "history[].id": "<string>", "history[].memory_id": "<string>", "history[].changes": {}, "history[].created_at": "<string>" } ] }
GET /v1/memories/:id/history — Get the change history for a memory.
Show History entry fields
curl https://api.memoclaw.com/v1/memories/550e8400-e29b-41d4-a716-446655440000/history
{ "history": [ { "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "memory_id": "550e8400-e29b-41d4-a716-446655440000", "changes": { "importance": 0.95, "content": "User prefers 2-space indentation (not tabs)" }, "created_at": "2026-02-11T15:30:00Z" }, { "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901", "memory_id": "550e8400-e29b-41d4-a716-446655440000", "changes": { "metadata": { "tags": ["preferences", "code-style"] } }, "created_at": "2026-02-10T12:00:00Z" } ] }
PATCH /v1/memories/:id