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

# List Memories

> Retrieve all translation memories on your account

Retrieve every translation memory owned by your API key's account. Ids from this list can be passed as `selectedMemories` when creating an order, or used with the memory management endpoints for updates, deletes, and imports.

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api-integration.ollang.com/integration/memories" \
    -H "X-Api-Key: <your-api-key>"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    "https://api-integration.ollang.com/integration/memories",
    {
      method: "GET",
      headers: {
        "X-Api-Key": "<your-api-key>",
      },
    },
  );

  const memories = await response.json();
  ```

  ```python Python theme={null}
  import requests

  headers = {"X-Api-Key": "<your-api-key>"}

  response = requests.get(
      "https://api-integration.ollang.com/integration/memories",
      headers=headers,
  )

  memories = response.json()
  ```
</RequestExample>

## Authorizations

This endpoint requires API key authentication.

* **Header name**: `X-Api-Key`
* **Header value**: Your API key from the [Ollang dashboard](https://lab.ollang.com)

## Response

Returns an array of translation memory objects.

<ResponseField name="id" type="string">
  Unique identifier of the translation memory.
</ResponseField>

<ResponseField name="title" type="string">
  Human-readable name of the translation memory.
</ResponseField>

<ResponseField name="memoryItemsCount" type="number">
  Number of translation units stored in the memory. A memory can hold several
  language pairs; matches are resolved per target language at translation time.
</ResponseField>

<ResponseField name="createdAt" type="string">
  Creation timestamp (ISO 8601).
</ResponseField>

<ResponseField name="updatedAt" type="string">
  Last update timestamp (ISO 8601).
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "507f1f77bcf86cd799439011",
      "title": "Product documentation EN→FR",
      "memoryItemsCount": 12480,
      "createdAt": "2023-10-05T12:34:56.789Z",
      "updatedAt": "2023-10-05T12:34:56.789Z"
    }
  ]
  ```

  ```json 401 theme={null}
  {
    "error": "Unauthorized",
    "message": "Invalid or missing API key"
  }
  ```
</ResponseExample>
