> ## 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 all stored facts for a user



## OpenAPI

````yaml /api-reference/openapi.json get /v1/memory/users/{end_user_id}
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/users/{end_user_id}:
    get:
      tags:
        - memory
      summary: Get all stored facts for a user
      operationId: getUserMemories
      parameters:
        - name: end_user_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: End User Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Max items per page.
            default: 100
            title: Limit
          description: Max items per page.
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Opaque continuation token from a prior page's next_cursor;
              continuation requests must reuse the same limit.
            title: Cursor
          description: >-
            Opaque continuation token from a prior page's next_cursor;
            continuation requests must reuse the same limit.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserMemoriesResponse'
        '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 backend is unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Invalid pagination cursor
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    UserMemoriesResponse:
      properties:
        facts:
          items:
            $ref: '#/components/schemas/MemoryFactResponse'
          type: array
          title: Facts
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
      type: object
      required:
        - facts
      title: UserMemoriesResponse
    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.
    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
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````