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

# Get Memory Thread Status

<Warning>The API Reference is under active development. Request and response schemas may change before a stable release.</Warning>


## OpenAPI

````yaml /openapi.json get /admin/v1/memory-threads/status
openapi: 3.1.0
info:
  title: Memind Server API
  description: HTTP API for Memind memory ingestion, retrieval, and administration.
  version: v1
servers: []
security: []
tags:
  - name: memory
    description: Runtime memory ingestion, retrieval, and health endpoints.
    x-group: memory
  - name: admin
    description: Administrative endpoints for memory operations.
    x-group: admin
paths:
  /admin/v1/memory-threads/status:
    get:
      tags:
        - admin
      summary: Get Memory Thread Status
      operationId: getMemoryThreadStatus
      parameters:
        - name: userId
          in: query
          required: true
          schema:
            type: string
        - name: agentId
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SuccessResultAdminMemoryThreadStatusView'
components:
  schemas:
    SuccessResultAdminMemoryThreadStatusView:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AdminMemoryThreadStatusView'
    AdminMemoryThreadStatusView:
      type: object
      properties:
        projectionState:
          type: string
        pendingCount:
          type: integer
          format: int64
        failedCount:
          type: integer
          format: int64
        rebuildInProgress:
          type: boolean
        lastProcessedItemId:
          type: integer
          format: int64
        materializationPolicyVersion:
          type: string
        updatedAt:
          type: string
          format: date-time
        invalidationReason:
          type: string

````