← Catalog

memory.list

coming soon

What is stored in a namespace, newest first, with each memory's version, whether it is a permanent trait or an inference, and the documents it came from. Use it to audit what the agent believes before it acts.

Coming soon. No real adapter serves this capability yet. The sandbox returns clearly labeled mock data against the final schema, so you can integrate now and switch on real routing when the first provider goes live.

Providers

ProviderStatus
Supermemory adapter next

Billing

Unit: per_page · unmatched results billed: no

The exact quote is returned by /v1/inspect before every call and held with headroom (1.5x the quote) on execution. The quote is the price floor: if the provider's actual cost overruns it, the run bills at about 1.5x cost, never above the hold. The unused part of every hold is released.

Run it

curl https://api.routergrowth.com/v1/run \
  -H "Authorization: Bearer $ROUTERGROWTH_API_KEY" \
  -d '{
    "capability": "memory.list",
    "input": {  },
    "routing": {"provider": "auto"}
  }'

Input schema

{
  "properties": {
    "limit": {
      "default": 20,
      "description": "Up to 100 per page",
      "type": "integer"
    },
    "namespace": {
      "description": "Same value you gave memory.add; omit for the workspace-wide memory",
      "type": "string"
    },
    "order": {
      "default": "desc",
      "enum": [
        "asc",
        "desc"
      ],
      "type": "string"
    },
    "page": {
      "default": 1,
      "type": "integer"
    },
    "sort": {
      "default": "createdAt",
      "enum": [
        "createdAt",
        "updatedAt"
      ],
      "type": "string"
    }
  },
  "type": "object"
}

Normalized output fields

memories · count · page · total · total_pages