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

# 指定したスタイルに対してエンジン内のキャラクターがモーフィングが可能か判定する

> 指定されたベーススタイルに対してエンジン内の各キャラクターがモーフィング機能を利用可能か返します。

モーフィングの許可/禁止は`/speakers`の`speaker.supported_features.synthesis_morphing`に記載されています。
プロパティが存在しない場合は、モーフィングが許可されているとみなします。
返り値のスタイルIDはstring型なので注意。

**Laravel実装状況**: ❌ コアに相当機能なし（フォールバックのみ）



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/jp/laravel-openapi.json post /morphable_targets
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS の音声合成エンジンです。
  version: latest
servers: []
security: []
paths:
  /morphable_targets:
    post:
      tags:
        - 音声合成
      summary: 指定したスタイルに対してエンジン内のキャラクターがモーフィングが可能か判定する
      description: >-
        指定されたベーススタイルに対してエンジン内の各キャラクターがモーフィング機能を利用可能か返します。


        モーフィングの許可/禁止は`/speakers`の`speaker.supported_features.synthesis_morphing`に記載されています。

        プロパティが存在しない場合は、モーフィングが許可されているとみなします。

        返り値のスタイルIDはstring型なので注意。


        **Laravel実装状況**: ❌ コアに相当機能なし（フォールバックのみ）
      operationId: morphable_targets
      parameters:
        - name: core_version
          in: query
          required: false
          schema:
            type: string
            title: Core Version
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: array
              items:
                type: integer
              title: Base Style Ids
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  additionalProperties:
                    $ref: '#/components/schemas/MorphableTargetInfo'
                title: Response Morphable Targets Morphable Targets Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MorphableTargetInfo:
      properties:
        is_morphable:
          type: boolean
          title: Is Morphable
          description: 指定したキャラクターに対してモーフィングの可否
      type: object
      required:
        - is_morphable
      title: MorphableTargetInfo
      description: モーフィング相手としての情報。
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````