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

# List Memory Stores

> Lists memory stores owned by the caller. Filter by `pal_id`, `participant_tag`, or both. The returned `memory_store_id` is the resource identifier for reading, editing, or deleting the store; conversation creation uses `participant_tags` instead.

<Info>
  Filter by both `pal_id` and `participant_tag` to find the `memory_store_id` for a known PAL-participant pair when you need to inspect or manage it. Conversations use `participant_tags` instead.
</Info>


## OpenAPI

````yaml get /v2/memory-stores
openapi: 3.0.3
info:
  title: Tavus Developer API Collection
  version: 1.0.0
  contact: {}
servers:
  - url: https://tavusapi.com
security:
  - apiKey: []
tags:
  - name: Videos
  - name: Faces
  - name: Voices
  - name: Conversations
  - name: Deployments
  - name: PALs
  - name: Tools
  - name: PAL Tools
  - name: Pronunciation Dictionaries
  - name: Replacements
  - name: Transcriptions
  - name: Documents
  - name: Memory Stores
paths:
  /v2/memory-stores:
    get:
      tags:
        - Memory Stores
      summary: List Memory Stores
      description: >-
        Lists memory stores owned by the caller. Filter by `pal_id`,
        `participant_tag`, or both. The returned `memory_store_id` is the
        resource identifier for reading, editing, or deleting the store;
        conversation creation uses `participant_tags` instead.
      operationId: listMemoryStores
      parameters:
        - name: pal_id
          in: query
          required: false
          description: Return only stores belonging to this PAL.
          schema:
            type: string
          example: p123456789ab
        - name: participant_tag
          in: query
          required: false
          description: Return only stores for this participant tag.
          schema:
            type: string
          example: user_12345
      responses:
        '200':
          description: Memory stores returned
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/memoryStoreSummary'
        '400':
          description: Bad Request - invalid query parameters
        '401':
          description: Unauthorized
      security:
        - apiKey: []
components:
  schemas:
    memoryStoreSummary:
      type: object
      required:
        - memory_store_id
        - pal_id
        - participant_tag
      properties:
        memory_store_id:
          type: string
          description: Unique identifier for the memory store.
          example: m123456789abc
        pal_id:
          type: string
          description: PAL this store belongs to.
          example: p123456789ab
        participant_tag:
          type: string
          description: Developer-provided participant identifier.
          example: user_12345
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````