MemoryKit

List Memories

List memories with cursor-based pagination and filters.

Query parameters

ParameterTypeDefaultDescription
limitnumber20Max results per page (1-100)
cursorstringCursor for pagination
statusstringFilter by status: processing, completed, failed
typestringFilter by content type
userIdstringFilter by user

Response

{
  "data": [
    {
      "id": "mem_abc123",
      "status": "completed",
      "title": "Q4 Planning Notes",
      "tags": ["planning", "q4"],
      "created_at": "2025-01-15T10:30:00Z"
    }
  ],
  "has_more": true,
  "cursor": "eyJpZCI6Im1lbV9..."
}

On this page