> ## Documentation Index
> Fetch the complete documentation index at: https://docs.qoder.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List memory stores

> List memory stores with pagination.

`GET /api/v1/cloud/memory_stores`

Lists memory stores, newest first.

## Headers

| Header          | Required | Description    |
| --------------- | -------- | -------------- |
| `Authorization` | Yes      | `Bearer <PAT>` |

## Query parameters

| Parameter          | Type    | Required | Description                                                    |
| ------------------ | ------- | -------- | -------------------------------------------------------------- |
| `limit`            | integer | No       | 1–100, defaults to 20                                          |
| `page`             | string  | No       | Opaque cursor from a previous `next_page` value                |
| `name`             | string  | No       | Case-insensitive prefix filter on the store name               |
| `include_archived` | boolean | No       | When `true`, archived stores are included. Defaults to `false` |
| `created_at[gte]`  | string  | No       | RFC 3339 timestamp, inclusive lower bound                      |
| `created_at[lte]`  | string  | No       | RFC 3339 timestamp, inclusive upper bound                      |

## Example request

```bash theme={null}
curl "https://api.qoder.com/api/v1/cloud/memory_stores?limit=10" \
  -H "Authorization: Bearer $QODER_PAT"
```

## Response

```json theme={null}
{
  "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`.
