---
title: "GET /v1/memories/{memory_id}/history/"
method: GET
path: "/v1/memories/{memory_id}/history/"
tags: ["memories"]
---

# GET /v1/memories/{memory_id}/history/

`GET /v1/memories/{memory_id}/history/`

Retrieve the history of a memory.

## Path parameters

- `memory_id` string, uuid, required

## Response `200`

Successfully retrieved the memory history

- object[]
  - `id` string, uuid, required — Unique identifier for the history entry
  - `memory_id` string, uuid, required — Unique identifier of the associated memory
  - `input` object[], required — The conversation input that led to this memory change
    - `role` 'user' | 'assistant', required — The role of the speaker in the conversation
    - `content` string, required — The content of the message
  - `old_memory` string, nullable — The previous state of the memory, if applicable
  - `new_memory` string, required — The new or updated state of the memory
  - `user_id` string, required — The identifier of the user associated with this memory
  - `event` 'ADD' | 'UPDATE' | 'DELETE', required — The type of event that occurred
  - `metadata` object, nullable — Additional metadata associated with the memory change
  - `created_at` string, date-time, required — The timestamp when this history entry was created
  - `updated_at` string, date-time, required — The timestamp when this history entry was last updated

---

[API](https://skmtc.dev/thuir/apis/mem0-api-docs.md) · [All operations](https://skmtc.dev/thuir/apis/mem0-api-docs/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/thuir/mem0-api-docs/revisions/f569857d13db/schema)
