> ## 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 memories

> List memory entries in a store.

`GET /api/v1/cloud/memory_stores/{memory_store_id}/memories`

Lists memory entries. Does not return `content`.

## Path parameters

| Parameter         | Description                   |
| ----------------- | ----------------------------- |
| `memory_store_id` | The store ID (`memstore_...`) |

## Headers

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

## Query parameters

| Parameter     | Type   | Required | Description                                       |
| ------------- | ------ | -------- | ------------------------------------------------- |
| `path_prefix` | string | No       | Filter entries whose path starts with this prefix |

## Example request

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

## Response

```json theme={null}
{
  "data": [
    {
      "id": "mem_...",
      "type": "memory",
      "memory_store_id": "memstore_...",
      "path": "decisions/arch-choice.md",
      "content_size_bytes": 46,
      "content_sha256": "a1b2c3...",
      "version": 1,
      "metadata": {},
      "created_at": "2026-05-18T08:01:00.000Z",
      "updated_at": "2026-05-18T08:01:00.000Z"
    }
  ],
  "has_more": false,
  "first_id": "mem_...",
  "last_id": "mem_..."
}
```

The list endpoint does not return `content`. Use the retrieve endpoint to read full content.
