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

# List Pronunciation Dictionaries

> List all pronunciation dictionaries for the authenticated user with pagination.




## OpenAPI

````yaml get /v2/pronunciation-dictionaries
openapi: 3.0.3
info:
  title: Tavus Developer API Collection
  version: 1.0.0
  contact: {}
servers:
  - url: https://tavusapi.com
security:
  - apiKey: []
tags:
  - name: Videos
  - name: Replicas
  - name: Voices
  - name: Conversations
  - name: Personas
  - name: Pronunciation Dictionaries
  - name: Replacements
  - name: Transcriptions
  - name: Documents
paths:
  /v2/pronunciation-dictionaries:
    get:
      tags:
        - Pronunciation Dictionaries
      summary: List Pronunciation Dictionaries
      description: >
        List all pronunciation dictionaries for the authenticated user with
        pagination.
      operationId: listPronunciationDictionaries
      parameters:
        - in: query
          name: limit
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 10
          description: 'Number of results per page. Range: 1-100.'
          example: 10
        - in: query
          name: page
          schema:
            type: integer
            default: 0
          description: Zero-based page number.
          example: 0
        - in: query
          name: sort
          schema:
            type: string
            enum:
              - asc
              - desc
            default: desc
          description: Sort order by creation date.
          example: desc
      responses:
        '200':
          description: List of pronunciation dictionaries
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    description: >-
                      Dictionaries for the current page; use `total_count`,
                      `page`, and `limit` with the query parameters for
                      pagination.
                    items:
                      type: object
                      properties:
                        pronunciation_dictionary_id:
                          type: string
                          description: Unique identifier for the pronunciation dictionary.
                          example: pd_abc123def456gh
                        name:
                          type: string
                          description: Name of the pronunciation dictionary.
                          example: Brand Terms
                        rules_count:
                          type: integer
                          description: >-
                            Number of rules in the dictionary. List responses
                            omit the full `rules` array; use [Get Pronunciation
                            Dictionary](/api-reference/pronunciation-dictionaries/get-pronunciation-dictionary)
                            to retrieve rules.
                          example: 3
                        created_at:
                          type: string
                          description: >-
                            ISO 8601 timestamp of when the dictionary was
                            created.
                          example: '2025-01-15T10:30:00Z'
                        updated_at:
                          type: string
                          description: >-
                            ISO 8601 timestamp of when the dictionary was last
                            updated.
                          example: '2025-01-15T10:30:00Z'
                  total_count:
                    type: integer
                    description: Total number of pronunciation dictionaries for the user
                    example: 2
                  page:
                    type: integer
                    description: Current page number
                    example: 0
                  limit:
                    type: integer
                    description: Number of dictionaries per page
                    example: 10
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: The error message
                    example: Invalid access token
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````