> ## 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 Learned Memory

> Returns the learned participant profile, timeline, or both.

<Info>
  Omit `type` to return both learned-memory sections, or filter to `profile` or `timeline`.
</Info>


## OpenAPI

````yaml get /v2/memory-stores/{memory_store_id}/learned
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}/learned:
    parameters:
      - $ref: '#/components/parameters/memoryStoreId'
    get:
      tags:
        - Memory Stores
      summary: Get Learned Memory
      description: Returns the learned participant profile, timeline, or both.
      operationId: getLearnedMemory
      parameters:
        - name: type
          in: query
          required: false
          description: Return only one learned-memory type. Omit to return both.
          schema:
            type: string
            enum:
              - profile
              - timeline
      responses:
        '200':
          description: Learned memory returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/learnedMemory'
        '400':
          description: Bad Request - type must be profile or timeline
        '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:
    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

````