Sazabi
APIMemory

List memory documents

GET
/memory

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.

Formatuuid
kind?string

Comma-separated kinds, for example note,runbook.

Length1 <= length
since?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.

Length1 <= length
pathPrefix?string

Filter to paths starting with this prefix.

Length1 <= length
managed?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.

Range1 <= value <= 100
Default50

Response 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"}