Create Memory
Store a new memory. Content is processed asynchronously.
POST/v1/memories
Request body
contentstringrequiredThe text content to store.
titlestringTitle for the memory. Auto-extracted from content if omitted.
typestringContent type. Auto-detected if omitted.
tagsstring[]Tags for filtering and organization.
formatstringContent format hint (e.g., markdown, html). Helps the chunking engine.
languagestringISO 639-1 language code (e.g., en, ru). Auto-detected if omitted.
metadataobjectArbitrary key-value pairs attached to the memory.
userIdstringAssociate this memory with a specific user.
Response
Returns 202 Accepted with the memory object.
idstringUnique memory identifier (e.g., mem_abc123).
statusstringProcessing status: processing, completed, or failed.
contentstringThe stored content.
titlestringMemory title.
tagsstring[]Tags associated with the memory.
created_atstringISO 8601 timestamp.