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

# Engine Manifest

> エンジンマニフェストを取得します。

**Laravel実装状況**: ✅ Laravelパッケージ用のマニフェストを静的に返す（フォールバック不要）



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/jp/laravel-openapi.json get /engine_manifest
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS の音声合成エンジンです。
  version: latest
servers: []
security: []
paths:
  /engine_manifest:
    get:
      tags:
        - その他
      summary: Engine Manifest
      description: |-
        エンジンマニフェストを取得します。

        **Laravel実装状況**: ✅ Laravelパッケージ用のマニフェストを静的に返す（フォールバック不要）
      operationId: engine_manifest
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EngineManifest'
components:
  schemas:
    EngineManifest:
      properties:
        manifest_version:
          type: string
          title: Manifest Version
          description: マニフェストのバージョン
        name:
          type: string
          title: Name
          description: エンジン名
        brand_name:
          type: string
          title: Brand Name
          description: ブランド名
        uuid:
          type: string
          title: Uuid
          description: エンジンのUUID
        url:
          type: string
          title: Url
          description: エンジンのURL
        icon:
          type: string
          title: Icon
          description: エンジンのアイコンをBASE64エンコードしたもの
        default_sampling_rate:
          type: integer
          title: Default Sampling Rate
          description: デフォルトのサンプリング周波数
        frame_rate:
          type: number
          title: Frame Rate
          description: エンジンのフレームレート
        terms_of_service:
          type: string
          title: Terms Of Service
          description: エンジンの利用規約
        update_infos:
          items:
            $ref: '#/components/schemas/UpdateInfo'
          type: array
          title: Update Infos
          description: エンジンのアップデート情報
        dependency_licenses:
          items:
            $ref: '#/components/schemas/LicenseInfo'
          type: array
          title: Dependency Licenses
          description: 依存関係のライセンス情報
        supported_vvlib_manifest_version:
          type: string
          title: Supported Vvlib Manifest Version
          description: エンジンが対応するvvlibのバージョン
        supported_features:
          $ref: '#/components/schemas/SupportedFeatures'
          description: エンジンが持つ機能
      type: object
      required:
        - manifest_version
        - name
        - brand_name
        - uuid
        - url
        - icon
        - default_sampling_rate
        - frame_rate
        - terms_of_service
        - update_infos
        - dependency_licenses
        - supported_features
      title: EngineManifest
      description: エンジン自体に関する情報。
    UpdateInfo:
      properties:
        version:
          type: string
          title: Version
          description: エンジンのバージョン名
        descriptions:
          items:
            type: string
          type: array
          title: Descriptions
          description: アップデートの詳細についての説明
        contributors:
          items:
            type: string
          type: array
          title: Contributors
          description: 貢献者名
      type: object
      required:
        - version
        - descriptions
      title: UpdateInfo
      description: エンジンのアップデート情報。
    LicenseInfo:
      properties:
        name:
          type: string
          title: Name
          description: 依存ライブラリ名
        version:
          type: string
          title: Version
          description: 依存ライブラリのバージョン
        license:
          type: string
          title: License
          description: 依存ライブラリのライセンス名
        text:
          type: string
          title: Text
          description: 依存ライブラリのライセンス本文
      type: object
      required:
        - name
        - text
      title: LicenseInfo
      description: 依存ライブラリのライセンス情報。
    SupportedFeatures:
      properties:
        adjust_mora_pitch:
          type: boolean
          title: Adjust Mora Pitch
          description: モーラごとの音高の調整
        adjust_phoneme_length:
          type: boolean
          title: Adjust Phoneme Length
          description: 音素ごとの長さの調整
        adjust_speed_scale:
          type: boolean
          title: Adjust Speed Scale
          description: 全体の話速の調整
        adjust_pitch_scale:
          type: boolean
          title: Adjust Pitch Scale
          description: 全体の音高の調整
        adjust_intonation_scale:
          type: boolean
          title: Adjust Intonation Scale
          description: 全体の抑揚の調整
        adjust_volume_scale:
          type: boolean
          title: Adjust Volume Scale
          description: 全体の音量の調整
        adjust_pause_length:
          type: boolean
          title: Adjust Pause Length
          description: 句読点などの無音時間の調整
        interrogative_upspeak:
          type: boolean
          title: Interrogative Upspeak
          description: 疑問文の自動調整
        synthesis_morphing:
          type: boolean
          title: Synthesis Morphing
          description: 2種類のスタイルでモーフィングした音声を合成
        sing:
          type: boolean
          title: Sing
          description: 歌唱音声合成
        manage_library:
          type: boolean
          title: Manage Library
          description: 音声ライブラリのインストール・アンインストール
        return_resource_url:
          type: boolean
          title: Return Resource Url
          description: キャラクター情報のリソースをURLで返送
        apply_katakana_english:
          type: boolean
          title: Apply Katakana English
          description: 未知の英単語をカタカナ読みに変換
      type: object
      required:
        - adjust_mora_pitch
        - adjust_phoneme_length
        - adjust_speed_scale
        - adjust_pitch_scale
        - adjust_intonation_scale
        - adjust_volume_scale
        - interrogative_upspeak
        - synthesis_morphing
      title: SupportedFeatures
      description: エンジンが持つ機能の一覧。

````