Skip to main content
GET
/
api
/
v1
/
memories
/
{memory_id}
{
  "memory_id": "<string>",
  "user_id": "<string>",
  "memory": "<string>",
  "topics": [
    "<string>"
  ],
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "metadata": {}
}

Authorizations

Authorization
string
header
required

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

Headers

X-Workspace-Id
string | null

The workspace ID

Path Parameters

memory_id
string
required

Query Parameters

user_id
string | null

User ID

Response

Successful Response

Schema for memory response.

memory_id
string
required

Unique identifier for the memory.

user_id
string
required

User ID who owns the memory.

memory
string
required

The memory content.

topics
string[] | null

Topics associated with the memory.

created_at
string<date-time> | null

When the memory was created.

updated_at
string<date-time> | null

When the memory was last updated.

metadata
object | null

Additional metadata for the memory.