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

# Singers

> Return list of singing character information.

**Laravel Implementation Status**: ✅ Fully supported by Core (matches official JSON, fallback implemented)



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/en/laravel-openapi.json get /singers
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS  text-to-speech synthesis engine.
  version: latest
servers: []
security: []
paths:
  /singers:
    get:
      tags:
        - Other
      summary: Singers
      description: >-
        Return list of singing character information.


        **Laravel Implementation Status**: ✅ Fully supported by Core (matches
        official JSON, fallback implemented)
      operationId: singers
      parameters:
        - name: core_version
          in: query
          required: false
          schema:
            type: string
            title: Core Version
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Speaker'
                title: Response Singers Singers Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Speaker:
      properties:
        name:
          type: string
          title: Name
          description: Name
        speaker_uuid:
          type: string
          title: Speaker Uuid
          description: Character UUID
        styles:
          items:
            $ref: '#/components/schemas/SpeakerStyle'
          type: array
          title: Styles
          description: List of styles
        version:
          type: string
          title: Version
          description: Character version
        supported_features:
          $ref: '#/components/schemas/SpeakerSupportedFeatures'
          description: Supported features of the character
      type: object
      required:
        - name
        - speaker_uuid
        - styles
        - version
      title: Speaker
      description: Character information
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SpeakerStyle:
      properties:
        name:
          type: string
          title: Name
          description: Style name
        id:
          type: integer
          title: Id
          description: Style ID
        type:
          type: string
          enum:
            - talk
            - singing_teacher
            - frame_decode
            - sing
          title: Type
          description: >-
            Style type. talk: Supports creation of speech synthesis queries and
            speech synthesis. singing_teacher: Supports creation of singing
            voice synthesis queries.
          default: talk
      type: object
      required:
        - name
        - id
      title: SpeakerStyle
      description: Style information of a character
    SpeakerSupportedFeatures:
      properties:
        permitted_synthesis_morphing:
          type: string
          enum:
            - ALL
            - SELF_ONLY
            - NOTHING
          title: Permitted Synthesis Morphing
          description: >-
            Morphing feature support. 'ALL' means all morphing is allowed,
            'SELF_ONLY' means only morphing within the same character is
            allowed, 'NOTHING' means all morphing is prohibited.
          default: ALL
      type: object
      title: SpeakerSupportedFeatures
      description: Information about supported features of a character
    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

````