> ## Documentation Index
> Fetch the complete documentation index at: https://smallestai-ff1e543d.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Pronunciations Dict

> Delete pronunciations dicts using the Waves API



## OpenAPI

````yaml DELETE /waves/v1/pronunciation-dicts
openapi: 3.0.1
info:
  title: Pronunciation Dictionaries API
  description: |
    API for managing pronunciation dictionaries in Waves.
    Create, update, and delete custom pronunciation rules for text-to-speech.
  version: 1.0.0
servers:
  - url: https://api.smallest.ai
    description: Waves API server
security: []
paths:
  /waves/v1/pronunciation-dicts:
    delete:
      tags:
        - Pronunciation Dictionaries
      summary: Delete pronunciation dictionary
      description: Delete an existing pronunciation dictionary for the authenticated user
      operationId: deletePronunciationDict
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeletePronunciationDictRequest'
            example:
              id: 64f1234567890abcdef12345
      responses:
        '200':
          description: Successfully deleted pronunciation dictionary
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeletePronunciationDictResponse'
              example:
                id: 64f1234567890abcdef12345
                deleted: true
        '400':
          description: Bad request - Invalid request body
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error: Invalid request body
                details:
                  - code: invalid_type
                    expected: string
                    received: undefined
                    path:
                      - id
                    message: Required
        '401':
          description: Unauthorized - Invalid or missing authentication
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error: Unauthorized
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error: Internal server error
      security:
        - bearerAuth: []
components:
  schemas:
    DeletePronunciationDictRequest:
      type: object
      required:
        - id
      properties:
        id:
          type: string
          minLength: 1
          description: ID of the pronunciation dictionary to delete
          example: 64f1234567890abcdef12345
    DeletePronunciationDictResponse:
      type: object
      required:
        - id
        - deleted
      properties:
        id:
          type: string
          description: ID of the deleted pronunciation dictionary
          example: 64f1234567890abcdef12345
        deleted:
          type: boolean
          description: Confirmation that the dictionary was deleted
          example: true
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Error message
          example: Invalid request body
        details:
          type: array
          items:
            type: object
          description: Additional error details (validation errors)
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer authentication header of the form `Bearer <api_key>`, where
        <api_key> is your api key.

````