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

# List Memory Records

> List memory records for the authenticated user.

Always scoped to the API-key's user_id — provenance and domain are
additional filters layered on top. Soft-deleted records
(is_active = false) are excluded from both the page and the total.

# IDOR AUDIT PASS — all queries scoped to authenticated user_id



## OpenAPI

````yaml get /api/v1/memory/records
openapi: 3.1.0
info:
  title: EDN Memory Engine
  version: 0.1.0
servers:
  - description: EDN evaluation endpoint
    url: https://api.tensorpro.ai
security:
  - EDNApiKey: []
paths:
  /api/v1/memory/records:
    get:
      summary: List Memory Records
      description: |-
        List memory records for the authenticated user.

        Always scoped to the API-key's user_id — provenance and domain are
        additional filters layered on top. Soft-deleted records
        (is_active = false) are excluded from both the page and the total.

        # IDOR AUDIT PASS — all queries scoped to authenticated user_id
      operationId: list_memory_records_api_v1_memory_records_get
      parameters:
        - description: Filter by provenance class
          in: query
          name: provenance
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by provenance class
            title: Provenance
        - description: Filter by domain
          in: query
          name: domain
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by domain
            title: Domain
        - description: Max records to return (capped at 200)
          in: query
          name: limit
          required: false
          schema:
            default: 50
            description: Max records to return (capped at 200)
            minimum: 1
            title: Limit
            type: integer
        - description: Pagination offset
          in: query
          name: offset
          required: false
          schema:
            default: 0
            description: Pagination offset
            minimum: 0
            title: Offset
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemoryRecordsResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    MemoryRecordsResponse:
      properties:
        records:
          items:
            $ref: '#/components/schemas/MemoryRecordSummary'
          title: Records
          type: array
        total:
          title: Total
          type: integer
        user_id:
          title: User Id
          type: string
      required:
        - records
        - total
        - user_id
      title: MemoryRecordsResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    MemoryRecordSummary:
      properties:
        content_summary:
          title: Content Summary
          type: string
        created_at:
          title: Created At
          type: string
        domain:
          title: Domain
          type: string
        id:
          title: Id
          type: string
        is_active:
          title: Is Active
          type: boolean
        provenance:
          title: Provenance
          type: string
      required:
        - id
        - content_summary
        - provenance
        - domain
        - created_at
        - is_active
      title: MemoryRecordSummary
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    EDNApiKey:
      description: >-
        EDN API key presented as 'Bearer <key>' in the Authorization header.
        Create and manage keys from the Console.
      in: header
      name: Authorization
      type: apiKey

````