> ## 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 Configured Providers

> Get currently configured service providers.

Voice processing is now handled by LiveKit voice worker with AgentFactory.
This endpoint returns the available providers from AgentFactory's registry.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /admin/providers/configured
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/providers/configured:
    get:
      tags:
        - admin-providers
      summary: Get Configured Providers
      description: >-
        Get currently configured service providers.


        Voice processing is now handled by LiveKit voice worker with
        AgentFactory.

        This endpoint returns the available providers from AgentFactory's
        registry.
      operationId: get_configured_providers_admin_providers_configured_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````