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

# Get Pronunciations

> Retrieve available pronunciations for the authenticated account



## OpenAPI

````yaml /openapi/phrase-studio.json get /v1/pronunciations
openapi: 3.0.3
info:
  title: Studio API
  description: >-
    API for creating projects and reading transcription, translation, and
    dubbing results.
  version: 1.0.0
servers:
  - url: https://api.studio.us.phrase.com
    description: Production US Environment
  - url: https://api.studio.eu.phrase.com
    description: Production EU Environment
security: []
tags:
  - name: Projects
    description: Manage transcription, translation, and dubbing projects
  - name: Recordings
    description: Access recording status and output data
  - name: Subtitle Profiles
    description: Manage subtitle formatting profiles
  - name: Pronunciations
    description: Manage custom pronunciation rules
  - name: Glossaries
    description: Manage translation glossaries
  - name: Insights
    description: Manage AI-powered insight prompts
  - name: Safe Communications
    description: Access safe communication evaluation templates
paths:
  /v1/pronunciations:
    get:
      tags:
        - Pronunciations
      summary: Get Pronunciations
      description: Retrieve available pronunciations for the authenticated account
      operationId: getPronunciations
      responses:
        '200':
          description: Pronunciations retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    description: Array of pronunciations
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: Pronunciation set ID
                        accountId:
                          type: string
                          format: uuid
                          nullable: true
                          description: Account ID (nullable for shared)
                        name:
                          type: string
                          description: Pronunciation set name
                        description:
                          type: string
                          nullable: true
                          description: Pronunciation set description
                        active:
                          type: boolean
                          description: Whether this set is active
                        createdAt:
                          type: string
                          format: date-time
                          description: Creation time
                        updatedAt:
                          type: string
                          format: date-time
                          description: Last update time
                        items:
                          type: array
                          description: Pronunciation items
                          items:
                            type: object
                            properties:
                              id:
                                type: string
                                format: uuid
                              pronunciationId:
                                type: string
                                format: uuid
                              source:
                                type: string
                              target:
                                type: string
                              createdAt:
                                type: string
                                format: date-time
                              updatedAt:
                                type: string
                                format: date-time
                            required:
                              - id
                              - pronunciationId
                              - source
                              - target
                              - createdAt
                              - updatedAt
                      required:
                        - id
                        - name
                        - active
                  pagination:
                    type: object
                    properties:
                      page:
                        type: integer
                      pageSize:
                        type: integer
                      total:
                        type: integer
                      totalPages:
                        type: integer
                    required:
                      - page
                      - pageSize
                      - total
                      - totalPages
              examples:
                example:
                  summary: Sample response
                  value:
                    data:
                      - id: f983b484-e1b6-439d-8aca-fd9c29181773
                        accountId: e7631985-e50d-424e-beef-6cb536d32c11
                        name: english  greeting
                        description: test
                        active: true
                        createdAt: '2025-10-13T10:53:12.400Z'
                        updatedAt: '2025-10-13T10:53:12.400Z'
                        items:
                          - id: 03e75ff0-50f2-493c-a46b-b0f4101e5850
                            pronunciationId: f983b484-e1b6-439d-8aca-fd9c29181773
                            source: hello
                            target: onion
                            createdAt: '2025-10-13T10:53:26.934Z'
                            updatedAt: '2025-10-13T10:53:26.934Z'
                    pagination:
                      page: 1
                      pageSize: 1
                      total: 1
                      totalPages: 1
        '401':
          description: Unauthorized (invalid API key)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden (access denied)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - apiKeyAuth: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        statusCode:
          type: integer
          example: 400
        message:
          type: string
          example: Bad Request
        timestamp:
          type: string
          format: date-time
          example: '2025-01-01T00:00:00.000Z'
      required:
        - success
        - statusCode
        - message
        - timestamp
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````