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

> Get health status of all voice processing services.

Voice processing is handled by the LiveKit voice worker using AgentFactory.
This endpoint returns the status of configured providers.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /admin/services/health
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:
  /admin/services/health:
    get:
      tags:
        - admin-services
      summary: Get Services Health
      description: >-
        Get health status of all voice processing services.


        Voice processing is handled by the LiveKit voice worker using
        AgentFactory.

        This endpoint returns the status of configured providers.
      operationId: get_services_health_admin_services_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Get Services Health Admin Services Health Get
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````