> ## 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.

# Extract Memory Async

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


## OpenAPI

````yaml /openapi.json post /open/v1/memory/async/extract
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:
  /open/v1/memory/async/extract:
    post:
      tags:
        - memory
      summary: Extract Memory Async
      operationId: extractMemoryAsync
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExtractMemoryRequest'
        required: true
      responses:
        '202':
          description: Accepted
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SuccessResultOperationAccepted'
components:
  schemas:
    ExtractMemoryRequest:
      type: object
      properties:
        userId:
          type: string
          minLength: 1
        agentId:
          type: string
          minLength: 1
        rawContent:
          $ref: '#/components/schemas/RawContent'
        sourceClient:
          type: string
      required:
        - agentId
        - rawContent
        - userId
    SuccessResultOperationAccepted:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/OperationAccepted'
    RawContent:
      discriminator:
        propertyName: type
      properties:
        type:
          type: string
      required:
        - type
    OperationAccepted:
      type: object
      properties:
        operationId:
          type: string
        status:
          type: string
        mode:
          type: string

````