> ## 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 Use Case Templates

> Get all available templates (system built-in + user-created + public).

Returns both hardcoded templates and custom templates from database.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /config/templates
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:
  /config/templates:
    get:
      tags:
        - agent-configuration
      summary: Get Use Case Templates
      description: |-
        Get all available templates (system built-in + user-created + public).

        Returns both hardcoded templates and custom templates from database.
      operationId: get_use_case_templates_config_templates_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````