---
title: "Retrieve details of a specific event by its ID."
method: GET
path: "/v1/event/{event_id}/"
tags: ["events"]
---

# Retrieve details of a specific event by its ID.

`GET /v1/event/{event_id}/`

## Path parameters

- `event_id` string, uuid, required

## Response `200`

Successfully retrieved event details.

- object
  - `id` string, uuid — The unique identifier of the event.
  - `event_type` string — The type of event (e.g., ADD, SEARCH).
  - `status` 'PENDING' | 'RUNNING' | 'FAILED' | 'SUCCEEDED' — The current status of the event.
  - `payload` object — The original payload associated with the event.
  - `metadata` object, nullable — Additional metadata associated with the event.
  - `results` unknown[] — Array of results produced by the event.
    - unknown
  - `created_at` string, date-time — Timestamp when the event was created.
  - `updated_at` string, date-time — Timestamp when the event was last updated.
  - `started_at` string, date-time — Timestamp when event processing started.
  - `completed_at` string, date-time — Timestamp when event processing completed.
  - `latency` number — Processing time in milliseconds.
  - `graph_status` string, nullable — Status of graph memory processing for this event, if graph memory is enabled.
  - `error` string, nullable — Error message if the event failed to process.

## Other responses

- `404` — Event not found.

---

[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)
