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

> Return the preset settings held by the engine.

**Laravel Implementation Status**: ✅ Persisted to JSON file with NativePresetStore (no fallback required)



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/en/laravel-openapi.json get /presets
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS  text-to-speech synthesis engine.
  version: latest
servers: []
security: []
paths:
  /presets:
    get:
      tags:
        - Other
      summary: Get Presets
      description: >-
        Return the preset settings held by the engine.


        **Laravel Implementation Status**: ✅ Persisted to JSON file with
        NativePresetStore (no fallback required)
      operationId: get_presets
      responses:
        '200':
          description: List of presets
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/Preset'
                type: array
                title: Response Get Presets Presets Get
components:
  schemas:
    Preset:
      properties:
        id:
          type: integer
          title: Id
          description: PresetsID
        name:
          type: string
          title: Name
          description: Preset name
        speaker_uuid:
          type: string
          title: Speaker Uuid
          description: Character UUID
        style_id:
          type: integer
          title: Style Id
          description: Style ID
        speedScale:
          type: number
          title: Speedscale
          description: Overall speech speed
        pitchScale:
          type: number
          title: Pitchscale
          description: Overall pitch
        intonationScale:
          type: number
          title: Intonationscale
          description: Overall intonation
        volumeScale:
          type: number
          title: Volumescale
          description: Overall volume
        prePhonemeLength:
          type: number
          title: Prephonemelength
          description: Silence duration before the audio
        postPhonemeLength:
          type: number
          title: Postphonemelength
          description: Silence duration after the audio
        pauseLength:
          type: number
          title: Pauselength
          description: Silence duration for punctuation etc.
        pauseLengthScale:
          type: number
          title: Pauselengthscale
          description: Silence duration for punctuation etc. (multiplier)
          default: 1
      type: object
      required:
        - id
        - name
        - speaker_uuid
        - style_id
        - speedScale
        - pitchScale
        - intonationScale
        - volumeScale
        - prePhonemeLength
        - postPhonemeLength
      title: Preset
      description: Preset information.

````