# 辞書取得 指定した辞書IDの詳細情報を取得します。辞書に含まれる単語の一覧も取得できます。 Endpoint: GET /api/v1/dictionaries/{dictionary_id} Version: 1.6.0 Security: APIKeyHeader ## Path parameters: - `dictionary_id` (string, required) 取得したい辞書のID ## Response 200 fields (application/json): - `dictionary_id` (string) 辞書の一意な識別子 - `team_id` (string) 辞書が所属するチームのID - `name` (string) 辞書の名前 - `words` (array) 辞書に含まれる単語の配列 - `words.word_id` (string) 単語の一意な識別子 - `words.dictionary_id` (string) 単語が所属する辞書のID - `words.word` (string) 辞書に登録する単語 - `words.reading` (string) 単語の読み仮名(任意) - `words.created_at` (string) 単語が作成された日時 - `words.updated_at` (string) 単語が最後に更新された日時 - `is_temporary` (boolean) で単語を指定した場合に臨時的に生成される辞書。の場合、書き起こし終了後に削除される。 - `created_at` (string) 辞書が作成された日時 - `updated_at` (string) 辞書が最後に更新された日時 ## Response 400 fields (application/json): - `error_id` (string) サポート問い合わせ時に使用するエラーの一意な識別子 - `error_code` (number) エラーの種類を示すコード - `error_message` (string) エラーの詳細な説明