Skip to main content
POST

Overview

Submits multiple memories in a single JSON body. Each item uses the same shape as Remember: content plus optional type, title, confidence, tags, source, and provenance.

Authentication

API clients do not send an API key or Authorization header.
string
required
Session token from Activate Agent. Must match agent_id.
string
required
Must be application/json

Path Parameters

string
required
The unique identifier of the agent.

Body

array
required
Non-empty array of memory objects (minimum 1, maximum 100 items per request).
Each array element supports:
  • content (string, required)
  • type (string, optional, default fact)
  • title (string, optional)
  • confidence (number, optional, default 0.8, range 0.01.0)
  • tags (array of strings, optional)
  • source (string, optional, default agent)
  • provenance (string, optional, default explicit_statement)

Next Steps