> ## 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

> ユーザー辞書に登録されている単語の一覧を返します。

単語の表層形(surface)は正規化済みの物を返します。

**Laravel実装状況**: ✅ NativeUserDictでJSONファイルに永続化（フォールバック不要）



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/jp/laravel-openapi.json get /user_dict
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS の音声合成エンジンです。
  version: latest
servers: []
security: []
paths:
  /user_dict:
    get:
      tags:
        - ユーザー辞書
      summary: Get User Dict Words
      description: |-
        ユーザー辞書に登録されている単語の一覧を返します。

        単語の表層形(surface)は正規化済みの物を返します。

        **Laravel実装状況**: ✅ NativeUserDictでJSONファイルに永続化（フォールバック不要）
      operationId: get_user_dict_words
      responses:
        '200':
          description: 単語のUUIDとその詳細
          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: 表層形
        priority:
          type: integer
          maximum: 10
          minimum: 0
          title: Priority
          description: 優先度
        context_id:
          type: integer
          title: Context Id
          description: 文脈ID
          default: 1348
        part_of_speech:
          type: string
          title: Part Of Speech
          description: 品詞
        part_of_speech_detail_1:
          type: string
          title: Part Of Speech Detail 1
          description: 品詞細分類1
        part_of_speech_detail_2:
          type: string
          title: Part Of Speech Detail 2
          description: 品詞細分類2
        part_of_speech_detail_3:
          type: string
          title: Part Of Speech Detail 3
          description: 品詞細分類3
        inflectional_type:
          type: string
          title: Inflectional Type
          description: 活用型
        inflectional_form:
          type: string
          title: Inflectional Form
          description: 活用形
        stem:
          type: string
          title: Stem
          description: 原形
        yomi:
          type: string
          title: Yomi
          description: 読み
        pronunciation:
          type: string
          title: Pronunciation
          description: 発音
        accent_type:
          type: integer
          title: Accent Type
          description: アクセント型
        mora_count:
          type: integer
          title: Mora Count
          description: モーラ数
        accent_associative_rule:
          type: string
          title: Accent Associative Rule
          description: アクセント結合規則
      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: 辞書のコンパイルに使われる情報。

````