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

# Supported Devices

> Get list of supported devices.

**Laravel Implementation Status**: ❌ Engine-specific feature (fallback only)



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/en/laravel-openapi.json get /supported_devices
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS  text-to-speech synthesis engine.
  version: latest
servers: []
security: []
paths:
  /supported_devices:
    get:
      tags:
        - Other
      summary: Supported Devices
      description: >-
        Get list of supported devices.


        **Laravel Implementation Status**: ❌ Engine-specific feature (fallback
        only)
      operationId: supported_devices
      parameters:
        - 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/SupportedDevicesInfo'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SupportedDevicesInfo:
      properties:
        cpu:
          type: boolean
          title: Cpu
          description: Whether CPU is supported
        cuda:
          type: boolean
          title: Cuda
          description: Whether CUDA (Nvidia GPU) is supported
        dml:
          type: boolean
          title: Dml
          description: Whether DirectML (Nvidia GPU / Radeon GPU etc.) is supported
      type: object
      required:
        - cpu
        - cuda
        - dml
      title: SupportedDevicesInfo
      description: Information about supported devices.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````