GET
/
memory-blobs
/
{blobId}
curl --request GET \
  --url https://api.memoram.app/api/v1/memory-blobs/{blobId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "content": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "source": "<string>",
  "title": "<string>",
  "summary": "<string>",
  "importance": 123,
  "confidence": 123,
  "tags": [
    "<string>"
  ],
  "tag_ids": [
    "<string>"
  ]
}

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
required

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

Response

200
application/json

Details of the memory blob.

Represents a single memory blob (content is encrypted).