Skip to main content
GET
/
v2
/
memory-stores
/
{memory_store_key}
/
memories
/
{memory_id}
Retrieve a specific memory
curl --request GET \
  --url https://api.orq.ai/v2/memory-stores/{memory_store_key}/memories/{memory_id} \
  --header 'Authorization: Bearer <token>'
{
  "_id": "<string>",
  "entity_id": "<string>",
  "created": "<string>",
  "updated": "<string>",
  "created_by_id": "<string>",
  "updated_by_id": "<string>",
  "store_id": "<string>",
  "metadata": {},
  "workspace_id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

memory_store_key
string
required

The unique key identifier of the memory store

memory_id
string
required

The unique identifier of the memory

Response

Memory successfully retrieved.

_id
string
required
entity_id
string
required
created
string
required
updated
string
required
store_id
string
required
metadata
object
required

Flexible key-value pairs for custom filtering and categorization. Clients can add arbitrary string metadata to enable future filtering of memory access based on their specific needs (e.g., user segments, topics, contexts, or any custom taxonomy).

workspace_id
string
required
created_by_id
string | null
updated_by_id
string | null