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

# List supported languages

> Every language available for translation, alphabetically by name.

The `code` values are what `POST /v1/rooms/{room_name}/token` accepts as a
participant's `languages`.



## OpenAPI

````yaml https://api.staging.glot.com/openapi.json get /v1/supported-languages
openapi: 3.1.0
info:
  title: glot-api
  version: 0.1.0
servers: []
security: []
tags:
  - name: rooms
    description: Create translation rooms and let participants join them.
  - name: usage
    description: Minutes and charges over time, for reporting and charts.
  - name: billing
    description: Buy prepaid credit and review the balance behind it.
  - name: api-keys
    description: Create and revoke keys used to authenticate requests.
  - name: supported-languages
    description: Languages available for translation.
  - name: users
    description: The authenticated user's own profile.
paths:
  /v1/supported-languages:
    get:
      tags:
        - supported-languages
      summary: List supported languages
      description: >-
        Every language available for translation, alphabetically by name.


        The `code` values are what `POST /v1/rooms/{room_name}/token` accepts as
        a

        participant's `languages`.
      operationId: list_supported_languages_v1_supported_languages_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/SupportedLanguageResponse'
                type: array
                title: Response List Supported Languages V1 Supported Languages Get
      security:
        - HTTPBearer: []
components:
  schemas:
    SupportedLanguageResponse:
      properties:
        code:
          type: string
          title: Code
        name:
          type: string
          title: Name
      type: object
      required:
        - code
        - name
      title: SupportedLanguageResponse
      description: A language available for translation, and the `code` used to request it.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````