> ## Documentation Index
> Fetch the complete documentation index at: https://docs.itellico.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List transcribers

> List available transcriber models grouped by provider. Each provider entry includes its code, name, EU-hosted flag, and models with id, name, description, and supported_languages.



## OpenAPI

````yaml https://api.itellico.ai/v1/openapi.json get /v1/accounts/{account_id}/providers/transcribers
openapi: 3.1.0
info:
  title: itellicoAI API v1
  version: 1.0.0
  description: >-
    Public REST API for managing accounts, agents, telephony resources, and
    conversations.


    Authentication is via API key in the `X-API-Key` header.
  termsOfService: https://itellico.ai/legal/terms-and-conditions/
  contact:
    name: itellicoAI Support
    email: support@itellico.ai
  license:
    name: Proprietary
servers:
  - url: https://api.itellico.ai
    description: Production
security:
  - APIKeyAuth: []
tags:
  - name: Accounts
    description: >-
      Identify the current account context and fetch core account metadata to
      bootstrap API usage.
  - name: Subaccounts
    description: >-
      Create and manage child accounts under a parent to model tenant
      hierarchies and delegated access.
  - name: Agents
    description: >-
      Define and configure conversational agents (model, transcriber, voice,
      behavior) used in calls and automations.
  - name: Providers
    description: >-
      Discover available AI model, transcriber, and voice catalogs for the
      current account when configuring agents.
  - name: Phone Numbers
    description: >-
      Manage BYOC phone numbers bound to your account; route inbound calls to
      agents and enable outbound calling.
  - name: SIP Trunks
    description: >-
      Manage BYOC SIP trunk connectivity (origination/termination endpoints and
      allowed IPs) used by phone numbers.
  - name: Calls
    description: >-
      Create, list, inspect, and connect voice calls across phone and web
      channels.
  - name: Conversations
    description: List and inspect conversation activity across web and telephony channels.
  - name: Analytics
    description: Usage analytics and reporting endpoints for conversation activity.
paths:
  /v1/accounts/{account_id}/providers/transcribers:
    get:
      tags:
        - Providers
      summary: List transcribers
      description: >-
        List available transcriber models grouped by provider. Each provider
        entry includes its code, name, EU-hosted flag, and models with id, name,
        description, and supported_languages.
      operationId: listTranscribers
      parameters:
        - in: path
          name: account_id
          schema:
            title: Account Id
            type: string
          required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/TranscriberCatalogEntrySchema'
                title: Response
                type: array
      security:
        - APIKeyAuth: []
components:
  schemas:
    TranscriberCatalogEntrySchema:
      properties:
        provider:
          $ref: '#/components/schemas/ModelCatalogProviderSchema'
        models:
          items:
            $ref: '#/components/schemas/TranscriberModelSchema'
          title: Models
          type: array
      required:
        - provider
        - models
      title: TranscriberCatalogEntrySchema
      type: object
    ModelCatalogProviderSchema:
      description: Provider metadata for a group of models.
      properties:
        code:
          description: Provider code (e.g., azure_openai, openai)
          title: Code
          type: string
        name:
          description: Human-friendly provider name
          title: Name
          type: string
        eu_hosted:
          default: false
          description: Whether the provider is EU-hosted (data residency)
          title: Eu Hosted
          type: boolean
      required:
        - code
        - name
      title: ModelCatalogProviderSchema
      type: object
    TranscriberModelSchema:
      properties:
        id:
          description: Provider-local model id
          title: Id
          type: string
        name:
          description: Display name
          title: Name
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
          description: Short description
          title: Description
        supported_languages:
          description: Supported languages
          items:
            $ref: '#/components/schemas/TranscriberLanguageSchema'
          title: Supported Languages
          type: array
      required:
        - id
        - name
      title: TranscriberModelSchema
      type: object
    TranscriberLanguageSchema:
      properties:
        code:
          description: Language code (e.g., de, en-US, multi)
          title: Code
          type: string
        name:
          description: Display label for the language
          title: Name
          type: string
        country_code:
          anyOf:
            - type: string
            - type: 'null'
          description: Representative ISO 3166-1 alpha-2 country code for flag display
          title: Country Code
      required:
        - code
        - name
      title: TranscriberLanguageSchema
      type: object
  securitySchemes:
    APIKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````