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

# Get Memory Store

> Returns the pinned and learned memory for one store.

<Info>
  The response includes both pinned memories and memory learned from prior conversations.
</Info>


## OpenAPI

````yaml get /v2/memory-stores/{memory_store_id}
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/{memory_store_id}:
    parameters:
      - $ref: '#/components/parameters/memoryStoreId'
    get:
      tags:
        - Memory Stores
      summary: Get Memory Store
      description: Returns the pinned and learned memory for one store.
      operationId: getMemoryStore
      responses:
        '200':
          description: Memory store returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/memoryStore'
        '401':
          description: Unauthorized
        '403':
          description: The caller does not own this memory store
        '404':
          description: Memory store not found
      security:
        - apiKey: []
components:
  parameters:
    memoryStoreId:
      name: memory_store_id
      in: path
      required: true
      description: Memory store identifier.
      schema:
        type: string
        minLength: 2
        maxLength: 64
        pattern: ^m[a-z0-9]+$
      example: m123456789abc
  schemas:
    memoryStore:
      allOf:
        - $ref: '#/components/schemas/memoryStoreSummary'
        - type: object
          required:
            - pinned_memories
            - learned
            - created_at
            - updated_at
          properties:
            pinned_memories:
              type: array
              maxItems: 30
              description: Pinned facts in this store.
              items:
                $ref: '#/components/schemas/pinnedMemory'
            learned:
              $ref: '#/components/schemas/learnedMemory'
            created_at:
              type: string
              description: When the store was created.
              example: '2026-08-24 12:00:00'
            updated_at:
              type: string
              description: When the store was last updated.
              example: '2026-08-24 12:00:00'
    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
    pinnedMemory:
      type: object
      required:
        - memory_id
        - memory
        - created_at
        - updated_at
      properties:
        memory_id:
          type: string
          description: Unique identifier for the pinned memory.
          example: pm123456789abc
        memory:
          type: string
          maxLength: 500
          description: Pinned fact.
          example: Prefers concise answers
        created_at:
          type: string
          description: When the pinned memory was created.
          example: '2026-08-24 12:00:00'
        updated_at:
          type: string
          description: When the pinned memory was last updated.
          example: '2026-08-24 12:00:00'
    learnedMemory:
      type: object
      description: >-
        Memory learned from prior conversations. A filtered request may return
        only profile or timeline.
      properties:
        profile:
          type: object
          additionalProperties: true
          description: >-
            Structured participant information learned across conversations,
            nested up to three levels.
          example:
            preferences:
              communication_style: concise
        timeline:
          type: object
          additionalProperties: true
          description: >-
            Time-aware interaction history grouped into recent conversations,
            days, weeks, and months.
          example:
            recent_conversations:
              - timestamp: '2026-08-24T19:00:00Z'
                summary: Discussed onboarding progress and next steps.
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````