> ## 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 Agent Config Schema

> 📋 Get complete schema for agent voice configuration.

**Frontend Usage:**
Use this to build forms for agent creation/editing with proper validation.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /providers/agent-config/schema
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/agent-config/schema:
    get:
      tags:
        - providers
      summary: Get Agent Config Schema
      description: >-
        📋 Get complete schema for agent voice configuration.


        **Frontend Usage:**

        Use this to build forms for agent creation/editing with proper
        validation.
      operationId: get_agent_config_schema_providers_agent_config_schema_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````