SmartMemory
POST
/memory/add

Add a memory item with optional full ingestion pipeline.

Requires authentication and operates on user-scoped data.

Args: content: The memory content memory_type: Type of memory (semantic, episodic, procedural) metadata: Additional metadata use_pipeline: If True, uses full ingestion pipeline with entity extraction (default: True) conversation_context: Optional conversation context for conversation-aware entity extraction

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/memory/add" \  -H "Content-Type: application/json" \  -d '{    "content": "string"  }'
null
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string",
      "input": null,
      "ctx": {}
    }
  ]
}