---
title: "Get Memory by ID"
method: GET
path: "/memories/{memory_id}"
tags: ["Memory"]
---

# Get Memory by ID

`GET /memories/{memory_id}`

Retrieve detailed information about a specific user memory by its ID.

## Path parameters

- `memory_id` string, required — Memory ID to retrieve

## Query parameters

- `user_id` string, nullable — User ID to query memory for
- `db_id` string, nullable — Database ID to query memory from
- `table` string, nullable — Table to query memory from

## Response `200`

Memory retrieved successfully

- UserMemorySchema
  - `memory_id` string, required — Unique identifier for the memory
  - `memory` string, required — Memory content text
  - `topics` string[], nullable — Topics or tags associated with the memory
  - `agent_id` string, nullable — Agent ID associated with this memory
  - `team_id` string, nullable — Team ID associated with this memory
  - `user_id` string, nullable — User ID who owns this memory
  - `updated_at` string, date-time, nullable — Timestamp when memory was last updated

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `404` — Memory not found
- `422` — Validation Error
- `500` — Internal Server Error

---

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