---
title: "GET /v1/memories/events/"
method: GET
path: "/v1/memories/events/"
tags: ["memories"]
---

# GET /v1/memories/events/

`GET /v1/memories/events/`

Despite the endpoint name, this returns memory history entries (the same shape as `GET /v1/memories/{memory_id}/history/`), not event/ingestion-job records. For event/ingestion-job status, use `GET /v1/event/{event_id}/`.

## Query parameters

- `page` integer
- `limit` integer

## Response `200`

Successfully retrieved memory history entries.

- object
  - `count` integer, required
  - `next` string, nullable, required
  - `previous` string, nullable, required
  - `results` object[], required
    - `id` string, uuid, required — Unique identifier for the history entry.
    - `memory_id` string, uuid, required — Unique identifier of the associated memory.
    - `input` object[] — The conversation input that led to this memory change
      - `role` string
      - `content` string
    - `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
    - `agent_id` string, nullable — The identifier of the agent associated with this memory, if any.
    - `app_id` string, nullable — The identifier of the app associated with this memory, if any.
    - `session_id` string, nullable — The run identifier associated with this memory, returned as `session_id`.
    - `categories` string[], nullable — Categories associated with the memory at this point in its history
    - `created_at` string, date-time, required — The timestamp when this history entry was created.
    - `event` 'ADD' | 'UPDATE' | 'DELETE', required — The type of event that occurred
    - `previous_embedding_qwen` string, nullable — Previous internal embedding representation (Qwen model), if applicable
    - `embedding_qwen` string, nullable — Internal embedding representation (Qwen model), if available
    - `metadata` object, nullable — Additional metadata associated with the memory change
    - `updated_at` string, date-time, required — The timestamp when this history entry was last updated.

## Other responses

- `404` — Invalid page.

---

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