Skip to main content
Retrieve a single memory by its identifier. Returns the structured Memory object including content, confidence, and source-document metadata.

Parameters

UUID
required
The memory ID. Typically obtained from memories.status (memory_ids) or from a recall result.

Returns

A Memory object.
UUID
Unique memory identifier.
string
Memory type: fact, preference, episode, emotion, or temporal_event.
string
The extracted memory content.
number
Confidence score of the extraction, between 0.0 and 1.0.
string
High-level category assigned by the extraction pipeline.
string
More specific subcategory under category.
datetime
Timestamp of when this memory was created.
datetime
Timestamp of the last update. None if never updated.
string
Identifier of the document this memory was extracted from.

Example

Raises

  • SynapAuthError: when the API key is missing or invalid.
  • SynapNotFoundError: when the memory_id does not exist or is outside the caller’s scope.

See also