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

> Return information of singing character specified by UUID.

Images and audio are returned in format specified by resource_format.

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



## OpenAPI

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


        Images and audio are returned in format specified by resource_format.


        **Laravel Implementation Status**: ✅ Fully supported by Laravel (matches
        official JSON, fallback implemented)
      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-encoded full-body portrait image, or URL
        style_infos:
          items:
            $ref: '#/components/schemas/StyleInfo'
          type: array
          title: Style Infos
          description: Additional style information
      type: object
      required:
        - policy
        - portrait
        - style_infos
      title: SpeakerInfo
      description: Additional information about a character
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    StyleInfo:
      properties:
        id:
          type: integer
          title: Id
          description: Style ID
        icon:
          type: string
          title: Icon
          description: Base64-encoded icon for this style, or URL
        portrait:
          type: string
          title: Portrait
          description: Base64-encoded full-body portrait image for this style, or URL
        voice_samples:
          items:
            type: string
          type: array
          title: Voice Samples
          description: Base64-encoded voice samples, or URLs
      type: object
      required:
        - id
        - icon
        - voice_samples
      title: StyleInfo
      description: Additional style 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

````