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

# Get one session's memory ingestion outcome and attributed facts



## OpenAPI

````yaml /api-reference/openapi.json get /v1/memory/sessions/{session_id}/memories
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.87.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/memory/sessions/{session_id}/memories:
    get:
      tags:
        - memory
      summary: Get one session's memory ingestion outcome and attributed facts
      operationId: getSessionMemories
      parameters:
        - name: session_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Session Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SessionMemoriesResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Memory feature not deployed, or session not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    SessionMemoriesResponse:
      properties:
        session_id:
          type: string
          format: uuid
          title: Session Id
        state:
          type: string
          enum:
            - pending
            - synced
            - skipped
            - suppressed
          title: State
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
        message_count:
          type: integer
          title: Message Count
          default: 0
        synced_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Synced At
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        facts:
          items:
            $ref: '#/components/schemas/MemoryFactResponse'
          type: array
          title: Facts
        facts_status:
          type: string
          enum:
            - ready
            - unavailable
          title: Facts Status
          default: ready
      type: object
      required:
        - session_id
        - state
      title: SessionMemoriesResponse
      description: >-
        Per-session memory ingestion outcome and attributed facts
        (customer-facing).


        ``state`` = ConvSessionMeta.memory_sync_state
        (pending/synced/skipped/suppressed).

        ``status`` / ``message_count`` / ``synced_at`` come from the latest

        ``sync_session`` MemoryAuditLog row for the session (None/0 if never
        synced).

        ``facts`` / ``facts_status`` are populated by a live vendor read when
        the

        session is synced.
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
        retryable:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Retryable
        retry_after:
          anyOf:
            - type: integer
            - type: 'null'
          title: Retry After
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    MemoryFactResponse:
      properties:
        fact:
          type: string
          title: Fact
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        valid_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Valid At
        invalid_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Invalid At
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        source_session_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Source Session Id
      type: object
      required:
        - fact
      title: MemoryFactResponse
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````