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

# Install Library

> Install voice library.

Send voice library ZIP file as request body.

**Laravel Implementation Status**: ❌ Engine-specific feature (no fallback)



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/en/laravel-openapi.json post /install_library/{library_uuid}
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS  text-to-speech synthesis engine.
  version: latest
servers: []
security: []
paths:
  /install_library/{library_uuid}:
    post:
      tags:
        - Voice Library Management
      summary: Install Library
      description: >-
        Install voice library.


        Send voice library ZIP file as request body.


        **Laravel Implementation Status**: ❌ Engine-specific feature (no
        fallback)
      operationId: install_library
      parameters:
        - name: library_uuid
          in: path
          required: true
          schema:
            type: string
            description: Voice library ID
            title: Library Uuid
          description: Voice library ID
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    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

````