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

# Health

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


## OpenAPI

````yaml /openapi.json get /open/v1/health
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/health:
    get:
      tags:
        - memory
      summary: Health
      operationId: health
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SuccessResultOpenMemoryHealthResponse'
components:
  schemas:
    SuccessResultOpenMemoryHealthResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/OpenMemoryHealthResponse'
    OpenMemoryHealthResponse:
      type: object
      properties:
        status:
          type: string
        service:
          type: string

````