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

# List pronunciation dictionaries

> Lists the workspace's pronunciation dictionaries. Scope `pronunciation_dictionary:read` (held by every member).



## OpenAPI

````yaml /api-reference/openapi.json get /pronunciation-dictionaries
openapi: 3.1.0
info:
  title: Lehar API
  version: v0
  description: >-
    Customer-facing REST API for the Lehar voice-AI platform. Platform-admin
    endpoints are intentionally excluded from this reference. Regenerate with
    `npm run sync:openapi`.
servers:
  - url: https://api.lehar.ai/ca/api/v0
security:
  - ApiKeyAuth: []
  - BearerAuth: []
paths:
  /pronunciation-dictionaries:
    get:
      tags:
        - Pronunciation Dictionaries
      summary: List pronunciation dictionaries
      description: >-
        Lists the workspace's pronunciation dictionaries. Scope
        `pronunciation_dictionary:read` (held by every member).
      operationId: list_pronunciation_dictionaries_ca_api_v0_pronunciation_dictionaries_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 50
            maximum: 100
          description: Items to return (max 100).
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            default: 0
          description: Items to skip.
      responses:
        '200':
          description: Paginated pronunciation dictionaries
          content:
            application/json:
              example:
                data:
                  - id: pd_01EXAMPLE
                    name: Brand names
                    description: How the agent should pronounce product and place names
                    entries:
                      - grapheme: Lehar
                        replacement: luh-har
                        kind: substitution
                        language: en
                      - grapheme: Bengaluru
                        replacement: beng-uh-loo-roo
                        kind: substitution
                    entry_count: 2
                    created_by_user_id: user_01EXAMPLE
                    created_at: '2026-08-24T10:00:00Z'
                    updated_at: '2026-08-24T10:00:00Z'
                pagination:
                  limit: 50
                  offset: 0
                  total: 1
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
    BearerAuth:
      type: http
      scheme: bearer

````