memμrondocs
Console
API REFERENCE

Ingest a memory

Queue a memory for Guardian ingest into the active organization. Returns a job ID for async polling.

Requires authentication — a Bearer token or X-Memuron-Actor-Id header.

Body parameters

contentstringrequired

scopestring[]optional

space_refstringoptional

custom_idstringoptional

session_idstringoptional

thread_idstringoptional

source_idstringoptional

source_urlstringoptional

Requires PostgreSQL for the durable IngestJobStore. Poll the returned job ID until completion.
POST/memuron/memories
curl -X POST https://api.memuron.com/memuron/memories \
  -H "Content-Type: application/json"
202 Accepted
{
  "status": "accepted",
  "job_id": "5f3a91c2-7b04-4e1a-9d33-b21",
  "job_status": "queued",
  "status_url": "/memuron/jobs/5f3a91c2-7b04-4e1a-9d33-b21",
  "created_at": "2026-06-17T09:24:01Z"
}