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

# List Languages

> Return sorted list of distinct language names across all voices.



## OpenAPI

````yaml /openapi.json get /api/resemble/voices/languages
openapi: 3.1.0
info:
  title: Nenyax API
  description: Backend API for Nenyax Voice Agent Platform
  version: 0.1.0
servers:
  - url: http://localhost:8000
    description: Local development
security: []
paths:
  /api/resemble/voices/languages:
    get:
      tags:
        - Resemble
      summary: List Languages
      description: Return sorted list of distinct language names across all voices.
      operationId: list_languages_api_resemble_voices_languages_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````