APIMemory
List memory documents
List project memory catalog rows without embedding search.
Query Parameters
projectId?string
Project to list memory for. Auto-filled from CLI and SDK context when omitted.
Format
uuidkind?string
Comma-separated kinds, for example note,runbook.
Length
1 <= lengthsince?string
Only return documents updated within this window, for example 7d.
Match
^(\d+)(s|m|h|d)$service?string
Filter to documents whose attrs.services contains this value.
Length
1 <= lengthpathPrefix?string
Filter to paths starting with this prefix.
Length
1 <= lengthmanaged?boolean
cursor?string
Cursor from a previous response's nextCursor to fetch the next page.
limit?integer
Maximum number of documents to return per page.
Range
1 <= value <= 100Default
50Response Body
application/json
curl -X GET "https://example.com/memory"{ "documents": [ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "projectId": "5a8591dd-4039-49df-9202-96385ba3eff8", "kind": "note", "managed": true, "path": "string", "title": "string", "contentHash": "string", "attrs": { "property1": null, "property2": null }, "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" } ], "nextCursor": "string"}