Core Operations

Get Memory

Retrieve the details of a single memory by its ID.

GET
/
get
/
memory
/
{memory_id}
{
  "code": 0,
  "data": {
    "id": "<string>",
    "memory_view": "detail_factual",
    "title": "<string>",
    "content": null,
    "conversation_id": "<string>",
    "message_ids": [
      "<string>"
    ],
    "status": "activated",
    "algorithm_updatable": true,
    "created_at": "<string>",
    "updated_at": "<string>",
    "user_id": "<string>",
    "agent_id": "<string>",
    "tags": [
      "<string>"
    ],
    "info": {}
  },
  "message": "ok"
}

Authorizations

Authorization
string
header
required

Token API_key, available in API Console > API Keys

Path Parameters

memory_id
string
required

Memory ID.

Response

application/json

Successful Response

code
number
required

API status code.

Example: 0
data
object
Show child attributes
message
string
required

API response message.

Example: "ok"