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

> 歌えるキャラクターの情報の一覧を返します。

**Laravel実装状況**: ✅ コアで完全対応（公式JSONと完全一致、フォールバック実装済み）



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/jp/laravel-openapi.json get /singers
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS の音声合成エンジンです。
  version: latest
servers: []
security: []
paths:
  /singers:
    get:
      tags:
        - その他
      summary: Singers
      description: |-
        歌えるキャラクターの情報の一覧を返します。

        **Laravel実装状況**: ✅ コアで完全対応（公式JSONと完全一致、フォールバック実装済み）
      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: 名前
        speaker_uuid:
          type: string
          title: Speaker Uuid
          description: キャラクターのUUID
        styles:
          items:
            $ref: '#/components/schemas/SpeakerStyle'
          type: array
          title: Styles
          description: スタイルの一覧
        version:
          type: string
          title: Version
          description: キャラクターのバージョン
        supported_features:
          $ref: '#/components/schemas/SpeakerSupportedFeatures'
          description: キャラクターの対応機能
      type: object
      required:
        - name
        - speaker_uuid
        - styles
        - version
      title: Speaker
      description: キャラクター情報
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SpeakerStyle:
      properties:
        name:
          type: string
          title: Name
          description: スタイル名
        id:
          type: integer
          title: Id
          description: スタイルID
        type:
          type: string
          enum:
            - talk
            - singing_teacher
            - frame_decode
            - sing
          title: Type
          description: >-
            スタイルの種類。talk:音声合成クエリの作成と音声合成が可能。singing_teacher:歌唱音声合成用のクエリの作成が可能。frame_decode:歌唱音声合成が可能。sing:歌唱音声合成用のクエリの作成と歌唱音声合成が可能。
          default: talk
      type: object
      required:
        - name
        - id
      title: SpeakerStyle
      description: キャラクターのスタイル情報
    SpeakerSupportedFeatures:
      properties:
        permitted_synthesis_morphing:
          type: string
          enum:
            - ALL
            - SELF_ONLY
            - NOTHING
          title: Permitted Synthesis Morphing
          description: >-
            モーフィング機能への対応。'ALL' は「全て許可」、'SELF_ONLY' は「同じキャラクター内でのみ許可」、'NOTHING'
            は「全て禁止」
          default: ALL
      type: object
      title: SpeakerSupportedFeatures
      description: キャラクターの対応機能の情報
    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

````