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

# Get Resources

> Get status of all configured resources.

    Returns the status of all embedders, language models, rerankers, and
    databases configured in the system. This is a subset of the full
    configuration response, focused specifically on resource health.

    Each resource entry includes:
    - `name`: The unique identifier for the resource
    - `provider`: The type of provider (e.g., 'openai', 'amazon-bedrock')
    - `status`: Current state ('ready', 'failed', or 'pending')
    - `error`: Error message if the resource failed to initialize

    Use this endpoint to quickly check which resources are available before
    making API calls that depend on specific embedders or models.



## OpenAPI

````yaml /openapi.json get /api/v2/config/resources
openapi: 3.1.0
info:
  title: MemMachine API
  version: 0.3.10
  description: >-
    Architectural Memory Systems for AI Agents. Specialized in episodic and
    semantic memory management with strict namespace isolation.
servers:
  - url: http://localhost:8080
security: []
tags:
  - name: Configuration
    description: System overview and memory subsystem configuration.
  - name: Episodic Configuration
    description: Per-project episodic memory subsystem configuration.
  - name: Memories
    description: Core operations for episodic and semantic memory ingestion and retrieval.
  - name: Projects
    description: Lifecycle management for isolated memory namespaces.
  - name: Resources
    description: Embedder, language model, and reranker lifecycle management.
  - name: 'Semantic Memory: Categories'
    description: Category, template, and tag management for semantic sets.
  - name: 'Semantic Memory: Features'
    description: Add, retrieve, and update individual semantic features.
  - name: 'Semantic Memory: Sets'
    description: Set type and set ID lifecycle, listing, and configuration.
  - name: System
    description: Infrastructure, health, and observability.
paths:
  /api/v2/config/resources:
    get:
      tags:
        - Configuration
      summary: Get Resources
      description: |-
        Get status of all configured resources.

            Returns the status of all embedders, language models, rerankers, and
            databases configured in the system. This is a subset of the full
            configuration response, focused specifically on resource health.

            Each resource entry includes:
            - `name`: The unique identifier for the resource
            - `provider`: The type of provider (e.g., 'openai', 'amazon-bedrock')
            - `status`: Current state ('ready', 'failed', or 'pending')
            - `error`: Error message if the resource failed to initialize

            Use this endpoint to quickly check which resources are available before
            making API calls that depend on specific embedders or models.
      operationId: get_resources
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResourcesStatus'
components:
  schemas:
    ResourcesStatus:
      properties:
        embedders:
          items:
            $ref: '#/components/schemas/ResourceInfo'
          type: array
          title: Embedders
          description: |2-

                The status of all configured embedders.
        language_models:
          items:
            $ref: '#/components/schemas/ResourceInfo'
          type: array
          title: Language Models
          description: |2-

                The status of all configured language models.
        rerankers:
          items:
            $ref: '#/components/schemas/ResourceInfo'
          type: array
          title: Rerankers
          description: |2-

                The status of all configured rerankers.
        databases:
          items:
            $ref: '#/components/schemas/ResourceInfo'
          type: array
          title: Databases
          description: |2-

                The status of all configured databases.
      type: object
      title: ResourcesStatus
      description: Status of all configured resources.
    ResourceInfo:
      properties:
        name:
          type: string
          title: Name
          description: |2-

                The unique name/identifier of the resource.
        provider:
          type: string
          title: Provider
          description: |2-

                The provider type of the resource (e.g., 'openai', 'amazon-bedrock
        status:
          $ref: '#/components/schemas/ResourceStatus'
          description: |2-

                The current status of the resource.
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
          description: |2-

                The error message if the resource operation failed.
      type: object
      required:
        - name
        - provider
        - status
      title: ResourceInfo
      description: Information about a configured resource.
    ResourceStatus:
      type: string
      enum:
        - ready
        - failed
        - pending
      title: ResourceStatus
      description: Status of a resource.

````