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

# Get a Synthesized Memory's Sources

> The source memories a synthesized (pattern) memory was distilled from.



## OpenAPI

````yaml get /api/v1/orgs/organizations/{org_id}/projects/{project_id}/dream/memory/{memory_id}/sources/
openapi: 3.0.1
info:
  title: Mem0 API Docs
  description: mem0.ai API Docs
  contact:
    email: support@mem0.ai
  license:
    name: Apache 2.0
  version: v1
servers:
  - url: https://api.mem0.ai/
security:
  - ApiKeyAuth: []
paths:
  /api/v1/orgs/organizations/{org_id}/projects/{project_id}/dream/memory/{memory_id}/sources/:
    get:
      tags:
        - dream
      summary: Get a synthesized memory's sources
      description: >-
        The source memories a synthesized (pattern) memory was distilled from,
        for the memory drawer's provenance panel.
      operationId: get_dream_memory_sources
      parameters:
        - name: org_id
          in: path
          required: true
          description: Unique identifier of the organization.
          schema:
            type: string
        - name: project_id
          in: path
          required: true
          description: Unique identifier of the project.
          schema:
            type: string
        - name: memory_id
          in: path
          required: true
          description: ID of the (synthesized) memory.
          schema:
            type: string
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  memory_id:
                    type: string
                    description: The memory's ID.
                  synthesized:
                    type: boolean
                    description: Whether this memory was produced by synthesis.
                  sources:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Source memory ID.
                        text:
                          type: string
                          description: Source memory text.
                        lifecycle_state:
                          type: string
                          description: Source memory lifecycle state.
                          enum:
                            - active
                            - merged
                            - superseded
        '404':
          description: Memory not found in this project.
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        API key authentication. Prefix your Mem0 API key with 'Token '. Example:
        'Token your_api_key'

````