Skip to main content
GET
Get Memory by ID
Retrieve a specific memory blob by its ID. Requires the user’s ID. The content field in the response blob will be encrypted and needs to be decrypted using the user’s encryption_key.

Authorization

Requires Bearer token authentication using your Developer JWT.

Authorizations

Authorization
string
header
required

JWT token obtained via /auth/token endpoint.

Path Parameters

blobId
string
required

The unique ID of the memory blob.

Query Parameters

user_id
string<uuid>
required

The unique ID of the user who owns the memory blob.

Response

Details of the memory blob.

Represents a single memory blob (content is encrypted).

id
string
user_id
string<uuid>
content
string

Encrypted memory content. Needs decryption using the user's encryption key.

created_at
string<date-time>
updated_at
string<date-time>
source
string
title
string
summary
string
importance
number<float>
confidence
number<float>
tags
string[]

List of tag names associated.

tag_ids
string[]

List of tag IDs associated.