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

# Get agents using pronunciation dictionary

> Returns a list of agents that use the specified pronunciation dictionary.
Use this endpoint to check which agents will be affected before modifying or deleting a dictionary.

## Use Cases

Check affected agents before:

* **Deleting a dictionary**: Understand which agents will lose pronunciation customizations
* **Removing rules**: Identify agents that rely on specific pronunciation rules
* **Planning updates**: Coordinate dictionary changes with agent configurations


## OpenAPI

````yaml https://blackbox.dasha.ai/swagger/v1/swagger.json get /api/v1/pronunciation-dictionaries/{providerId}/affected-agents
openapi: 3.0.4
info:
  title: Dasha BlackBox Agent API
  description: API for managing AI agents and calls
  contact:
    name: DashaAI Team
    email: support@dasha.ai
  version: v1
servers:
  - url: https://blackbox.dasha.ai
    description: Dasha BlackBox Agent API
security:
  - ApiKey: []
  - OAuth: []
tags:
  - name: ActivityLogs
  - name: Agents
  - name: AgentTestCases
  - name: CallResults
  - name: Calls
  - name: Chats
  - name: Copilot
  - name: CustomerData
  - name: Mcp
  - name: Media
  - name: Misc
  - name: PronunciationDictionaries
  - name: Providers
  - name: SipAliases
  - name: SipCredentials
  - name: SipPhoneNumbers
  - name: TextChat
  - name: TwilioProvider
  - name: Voice
  - name: WebhookTest
  - name: WebIntegrations
  - name: WebSocket
    description: WebSocket endpoints for real-time communication
paths:
  /api/v1/pronunciation-dictionaries/{providerId}/affected-agents:
    get:
      tags:
        - PronunciationDictionaries
      summary: Get agents using pronunciation dictionary
      description: >-
        Returns a list of agents that use the specified pronunciation
        dictionary.

        Use this endpoint to check which agents will be affected before
        modifying or deleting a dictionary.
      parameters:
        - name: providerId
          in: path
          description: Dictionary identifier
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Returns affected agents successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AffectedAgentsResponseDto'
        '401':
          description: Authentication failed or API key is missing
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '500':
          description: Server error occurred while retrieving affected agents
components:
  schemas:
    AffectedAgentsResponseDto:
      required:
        - agents
      type: object
      properties:
        agents:
          type: array
          items:
            $ref: '#/components/schemas/AffectedAgentDto'
          description: >-
            Agents configured to use this pronunciation dictionary. When the
            dictionary's rules are modified, these agents' TTS output will
            reflect the changes in their next voice synthesis operations.
      additionalProperties: false
      description: >-
        List of agents using a specific pronunciation dictionary. Useful for
        understanding which agents will be affected by changes to the
        dictionary, as modifications to pronunciation rules will impact TTS
        output for all listed agents.
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        status:
          type: integer
          format: int32
          nullable: true
        detail:
          type: string
          nullable: true
        instance:
          type: string
          nullable: true
      additionalProperties: {}
    AffectedAgentDto:
      required:
        - id
        - name
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the agent using the pronunciation dictionary.
          format: uuid
        name:
          minLength: 1
          type: string
          description: Display name of the agent using the pronunciation dictionary.
      additionalProperties: false
      description: >-
        Agent information showing which agents are using a pronunciation
        dictionary. Contains identifying information to help you understand the
        impact of dictionary changes.
  securitySchemes:
    ApiKey:
      type: http
      description: API Key Authentication (Bearer {key})
      scheme: Bearer
    OAuth:
      type: oauth2
      flows:
        implicit:
          authorizationUrl: https://auth.dasha.ai/connect/authorize
          scopes:
            platform_api: Platform API

````