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

# Singer Info

> UUID で指定された歌えるキャラクターの情報を返します。

画像や音声はresource_formatで指定した形式で返されます。

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



## OpenAPI

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

        画像や音声はresource_formatで指定した形式で返されます。

        **Laravel実装状況**: ✅ Laravelで完全対応（公式JSONと完全一致、フォールバック実装済み）
      operationId: singer_info
      parameters:
        - name: speaker_uuid
          in: query
          required: true
          schema:
            type: string
            title: Speaker Uuid
        - name: resource_format
          in: query
          required: false
          schema:
            enum:
              - base64
              - url
            type: string
            default: base64
            title: Resource Format
        - name: core_version
          in: query
          required: false
          schema:
            type: string
            title: Core Version
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpeakerInfo'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SpeakerInfo:
      properties:
        policy:
          type: string
          title: Policy
          description: policy.md
        portrait:
          type: string
          title: Portrait
          description: 立ち絵画像をbase64エンコードしたもの、あるいはURL
        style_infos:
          items:
            $ref: '#/components/schemas/StyleInfo'
          type: array
          title: Style Infos
          description: スタイルの追加情報
      type: object
      required:
        - policy
        - portrait
        - style_infos
      title: SpeakerInfo
      description: キャラクターの追加情報
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    StyleInfo:
      properties:
        id:
          type: integer
          title: Id
          description: スタイルID
        icon:
          type: string
          title: Icon
          description: このスタイルのアイコンをbase64エンコードしたもの、あるいはURL
        portrait:
          type: string
          title: Portrait
          description: このスタイルの立ち絵画像をbase64エンコードしたもの、あるいはURL
        voice_samples:
          items:
            type: string
          type: array
          title: Voice Samples
          description: サンプル音声をbase64エンコードしたもの、あるいはURL
      type: object
      required:
        - id
        - icon
        - voice_samples
      title: StyleInfo
      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

````