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

# Get Language List

> Retrieve supported languages for video translation

Get the complete list of languages supported by the video translation service. This endpoint returns all available target languages along with their language codes and additional metadata.


## OpenAPI

````yaml GET /api/open/v3/language/list
openapi: 3.0.3
info:
  title: Video Translation API
  description: >-
    API for translating videos into multiple languages with AI voices and
    lip-sync
  version: 1.0.0
servers:
  - url: https://openapi.akool.com
    description: Production server
security:
  - ApiKeyAuth: []
  - BearerAuth: []
paths:
  /api/open/v3/language/list:
    get:
      tags:
        - Video Translation
      summary: Get Language List
      description: Retrieve supported languages for video translation
      responses:
        '200':
          description: Language list retrieved successfully
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiResponse'
                  - type: object
                    properties:
                      data:
                        $ref: '#/components/schemas/LanguageListResponse'
components:
  schemas:
    ApiResponse:
      type: object
      properties:
        code:
          type: integer
          description: Business status code (1000 = success)
        msg:
          type: string
          description: Status message
    LanguageListResponse:
      type: object
      properties:
        lang_list:
          type: array
          items:
            $ref: '#/components/schemas/LanguageItem'
          description: Array of supported languages
    LanguageItem:
      type: object
      properties:
        lang_name:
          type: string
          description: Language display name (e.g., "Afrikaans (South Africa)")
        lang_code:
          type: string
          description: Language code identifier (e.g., "af-ZA")
        url:
          type: string
          description: Language flag icon URL
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
    BearerAuth:
      type: http
      scheme: bearer

````