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

# List All Memories

> Retrieve all memory stores associated with your account.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Response

<ResponseField name="data" type="object">
  Response data containing memories array.
</ResponseField>

<ResponseField name="data.memories" type="array">
  Array of memory objects.
</ResponseField>

<ResponseField name="data.memories[].id" type="string">
  Unique identifier for the memory.
</ResponseField>

<ResponseField name="data.memories[].name" type="string">
  Name of the memory.
</ResponseField>

<ResponseField name="data.memories[].created_at" type="string">
  ISO timestamp when the memory was created.
</ResponseField>

<ResponseField name="data.memories[].user_id" type="string">
  User ID that owns this memory.
</ResponseField>

<ResponseField name="data.memories[].memory_duration" type="null">
  Memory duration setting (currently null).
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "data": {
      "memories": [
        {
          "id": "12345678-1234-1234-1234-123456789012",
          "created_at": "2025-07-20T23:32:19.840Z",
          "user_id": "87654321-4321-4321-4321-210987654321",
          "name": "Customer Support",
          "memory_duration": null
        }
      ]
    },
    "errors": null
  }
  ```

  ### Error Responses

  ```json Error Response theme={null}
  {
    "data": null,
    "errors": [
      {
        "error": "MEMORY_ERROR",
        "message": "Failed to retrieve memories."
      }
    ]
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
