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

> 🎧 Get ALL STT (Speech-to-Text) providers with complete configuration data.

**Frontend Usage:**
Use this to populate STT provider selection and show language support.

**Returns for each provider:**
- Available models with language support
- Real-time/streaming capabilities
- Diarization support
- Agent configuration examples



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /providers/stt/providers
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:
  /providers/stt/providers:
    get:
      tags:
        - providers
      summary: Get Stt Providers Comprehensive
      description: >-
        🎧 Get ALL STT (Speech-to-Text) providers with complete configuration
        data.


        **Frontend Usage:**

        Use this to populate STT provider selection and show language support.


        **Returns for each provider:**

        - Available models with language support

        - Real-time/streaming capabilities

        - Diarization support

        - Agent configuration examples
      operationId: get_stt_providers_comprehensive_providers_stt_providers_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````