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



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /system/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:
  /system/services/health:
    get:
      tags:
        - system
      summary: Get Services Health
      description: Get health status of all external services.
      operationId: get_services_health_system_services_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````