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

# Create query for singing voice synthesis

> Get initial values for singing voice synthesis query. The query obtained here can be used directly for Singing Voice Synthesis. Refer to `Schemas` for the meaning of each value.

**Laravel Implementation Status**: ✅ Fully supported by Core (fallback implemented)



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/en/laravel-openapi.json post /sing_frame_audio_query
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS  text-to-speech synthesis engine.
  version: latest
servers: []
security: []
paths:
  /sing_frame_audio_query:
    post:
      tags:
        - Query Creation
      summary: Create query for singing voice synthesis
      description: >-
        Get initial values for singing voice synthesis query. The query obtained
        here can be used directly for Singing Voice Synthesis. Refer to
        `Schemas` for the meaning of each value.


        **Laravel Implementation Status**: ✅ Fully supported by Core (fallback
        implemented)
      operationId: sing_frame_audio_query
      parameters:
        - name: speaker
          in: query
          required: true
          schema:
            type: integer
            title: Speaker
        - name: core_version
          in: query
          required: false
          schema:
            type: string
            title: Core Version
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Score'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FrameAudioQuery'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Score:
      properties:
        notes:
          items:
            $ref: '#/components/schemas/Note'
          type: array
          title: Notes
          description: List of notes
      type: object
      required:
        - notes
      title: Score
      description: Score information.
    FrameAudioQuery:
      properties:
        f0:
          items:
            type: number
          type: array
          title: F0
          description: Frame-by-frame fundamental frequency
        volume:
          items:
            type: number
          type: array
          title: Volume
          description: Frame-by-frame volume
        phonemes:
          items:
            $ref: '#/components/schemas/FramePhoneme'
          type: array
          title: Phonemes
          description: List of phonemes
        volumeScale:
          type: number
          title: Volumescale
          description: Overall volume
        outputSamplingRate:
          type: integer
          title: Outputsamplingrate
          description: Output sampling rate of the audio data
        outputStereo:
          type: boolean
          title: Outputstereo
          description: Whether to output audio data in stereo
      type: object
      required:
        - f0
        - volume
        - phonemes
        - volumeScale
        - outputSamplingRate
        - outputStereo
      title: FrameAudioQuery
      description: Frame-by-frame query for speech synthesis.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Note:
      properties:
        id:
          anyOf:
            - type: string
            - type: 'null'
          title: Id
          description: ID
        key:
          type: integer
          title: Key
          description: Musical key
        frame_length:
          type: integer
          title: Frame Length
          description: Frame length of the note
        lyric:
          type: string
          title: Lyric
          description: Lyric of the note
      type: object
      required:
        - frame_length
        - lyric
      title: Note
      description: Information for each note.
    FramePhoneme:
      properties:
        phoneme:
          type: string
          title: Phoneme
          description: Phoneme
        frame_length:
          type: integer
          title: Frame Length
          description: Frame length of the phoneme
        note_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Note Id
          description: Note ID
      type: object
      required:
        - phoneme
        - frame_length
      title: FramePhoneme
      description: Phoneme information.
    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

````