> ## 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 pitch from accent phrases

> 

**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 /mora_pitch
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS  text-to-speech synthesis engine.
  version: latest
servers: []
security: []
paths:
  /mora_pitch:
    post:
      tags:
        - Query Editing
      summary: Get pitch from accent phrases
      description: >-


        **Laravel Implementation Status**: ✅ Fully supported by Core (fallback
        implemented)
      operationId: mora_pitch
      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:
              type: array
              items:
                $ref: '#/components/schemas/AccentPhrase'
              title: Accent Phrases
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AccentPhrase'
                title: Response Mora Pitch Mora Pitch Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AccentPhrase:
      properties:
        moras:
          items:
            $ref: '#/components/schemas/Mora'
          type: array
          title: Moras
          description: List of moras
        accent:
          type: integer
          title: Accent
          description: Accent position
        pause_mora:
          $ref: '#/components/schemas/Mora'
          title: Pause Mora
          description: >-
            Silent mora appended to the end of the accent phrase. If null, no
            silent mora is appended.
        is_interrogative:
          type: boolean
          title: Is Interrogative
          description: Whether the phrase is interrogative
          default: false
      type: object
      required:
        - moras
        - accent
      title: AccentPhrase
      description: Information for each accent phrase.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Mora:
      properties:
        text:
          type: string
          title: Text
          description: Character
        consonant:
          type: string
          title: Consonant
          description: Consonant phoneme
        consonant_length:
          type: number
          title: Consonant Length
          description: Consonant length
        vowel:
          type: string
          title: Vowel
          description: Vowel phoneme
        vowel_length:
          type: number
          title: Vowel Length
          description: Vowel length
        pitch:
          type: number
          title: Pitch
          description: Pitch
      type: object
      required:
        - text
        - vowel
        - vowel_length
        - pitch
      title: Mora
      description: Information for each mora (consonant + vowel).
    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

````