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

# Get Services Registry

> Get information about all registered services.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /system/services/registry
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /system/services/registry:
    get:
      tags:
        - system
      summary: Get Services Registry
      description: Get information about all registered services.
      operationId: get_services_registry_system_services_registry_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````