Skip to main content
GET /api/v1/cloud/memory_stores Lists memory stores, newest first.

Headers

HeaderRequiredDescription
AuthorizationYesBearer <PAT>

Query parameters

ParameterTypeRequiredDescription
limitintegerNo1–100, defaults to 20
pagestringNoOpaque cursor from a previous next_page value
namestringNoCase-insensitive prefix filter on the store name
include_archivedbooleanNoWhen true, archived stores are included. Defaults to false
created_at[gte]stringNoRFC 3339 timestamp, inclusive lower bound
created_at[lte]stringNoRFC 3339 timestamp, inclusive upper bound

Example request

curl "https://api.qoder.com/api/v1/cloud/memory_stores?limit=10" \
  -H "Authorization: Bearer $QODER_PAT"

Response

{
  "data": [
    {
      "id": "memstore_019e5cdb9c3f71c3b6505eba937a40b4",
      "created_at": "2026-05-18T08:00:00.000Z",
      "name": "project-alpha-memory",
      "type": "memory_store",
      "updated_at": "2026-05-18T08:00:00.000Z",
      "archived_at": null,
      "description": "Agent knowledge base for project Alpha",
      "metadata": {"team": "backend"},
      "status": "active",
      "entry_count": 3,
      "total_size": 1024
    }
  ],
  "has_more": true,
  "first_id": "memstore_019e5cdb9c3f71c3b6505eba937a40b4",
  "last_id": "memstore_019e5cdb9c3f71c3b6505eba937a40b4",
  "next_page": "page_bWVtc3RvcmVfMDE5ZTVjZGI..."
}
When there are no more results, has_more is false and next_page is null.