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

# Get User Dict Words

> Return the list of words registered in the user dictionary.

The surface form of each word is returned in normalized form.

**Laravel Implementation Status**: ✅ Persisted to JSON file with NativeUserDict (no fallback required)



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/en/laravel-openapi.json get /user_dict
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS  text-to-speech synthesis engine.
  version: latest
servers: []
security: []
paths:
  /user_dict:
    get:
      tags:
        - User Dictionary
      summary: Get User Dict Words
      description: >-
        Return the list of words registered in the user dictionary.


        The surface form of each word is returned in normalized form.


        **Laravel Implementation Status**: ✅ Persisted to JSON file with
        NativeUserDict (no fallback required)
      operationId: get_user_dict_words
      responses:
        '200':
          description: Word UUIDs and their details
          content:
            application/json:
              schema:
                additionalProperties:
                  $ref: '#/components/schemas/UserDictWord'
                type: object
                title: Response Get User Dict Words User Dict Get
components:
  schemas:
    UserDictWord:
      properties:
        surface:
          type: string
          title: Surface
          description: Surface form
        priority:
          type: integer
          maximum: 10
          minimum: 0
          title: Priority
          description: Priority
        context_id:
          type: integer
          title: Context Id
          description: Context ID
          default: 1348
        part_of_speech:
          type: string
          title: Part Of Speech
          description: Part of speech
        part_of_speech_detail_1:
          type: string
          title: Part Of Speech Detail 1
          description: Part of speech detail 1
        part_of_speech_detail_2:
          type: string
          title: Part Of Speech Detail 2
          description: Part of speech detail 2
        part_of_speech_detail_3:
          type: string
          title: Part Of Speech Detail 3
          description: Part of speech detail 3
        inflectional_type:
          type: string
          title: Inflectional Type
          description: Inflectional type
        inflectional_form:
          type: string
          title: Inflectional Form
          description: Inflectional form
        stem:
          type: string
          title: Stem
          description: Stem form
        yomi:
          type: string
          title: Yomi
          description: Reading (yomi)
        pronunciation:
          type: string
          title: Pronunciation
          description: Pronunciation
        accent_type:
          type: integer
          title: Accent Type
          description: Accent type
        mora_count:
          type: integer
          title: Mora Count
          description: Mora count
        accent_associative_rule:
          type: string
          title: Accent Associative Rule
          description: Accent associative rule
      type: object
      required:
        - surface
        - priority
        - part_of_speech
        - part_of_speech_detail_1
        - part_of_speech_detail_2
        - part_of_speech_detail_3
        - inflectional_type
        - inflectional_form
        - stem
        - yomi
        - pronunciation
        - accent_type
        - accent_associative_rule
      title: UserDictWord
      description: Information used for dictionary compilation.

````