> ## 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 All Stt Providers

> Get all available STT providers with their models and languages.

Returns comprehensive list for frontend transcription selection.
Includes language support and auto-detection capabilities.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /admin/providers/stt
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/stt:
    get:
      tags:
        - admin-providers
      summary: Get All Stt Providers
      description: |-
        Get all available STT providers with their models and languages.

        Returns comprehensive list for frontend transcription selection.
        Includes language support and auto-detection capabilities.
      operationId: get_all_stt_providers_admin_providers_stt_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````