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

# Get Filtered Languages

## Description

Same response shape as [Get Languages](/vod/get-languages), but only locales that match the path filter are returned. Use this when you need **dubbing-only** or **text-only** lists without pulling the full catalog.


## OpenAPI

````yaml get /v2/languages/{language_type}
openapi: 3.1.0
info:
  title: Lingopal VOD API
  description: API for Video on Demand processing, transcription, and translation services
  version: 0.0.1
servers:
  - url: https://api.lingopal.ai
security: []
paths:
  /v2/languages/{language_type}:
    get:
      tags:
        - language
      summary: Get Filtered Languages
      operationId: get_filtered_languages_v2_languages__language_type__get
      parameters:
        - name: language_type
          in: path
          required: true
          schema:
            enum:
              - dubbing
              - text
              - all
            type: string
            title: Language Type
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LanguageInfoResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    LanguageInfoResponse:
      properties:
        request_type:
          type: string
          enum:
            - dubbing
            - text
            - all
          title: Request Type
        count:
          type: integer
          title: Count
        languages:
          items:
            $ref: '#/components/schemas/app__views__v2__language__LanguageInfo'
          type: array
          title: Languages
      type: object
      required:
        - request_type
        - count
        - languages
      title: LanguageInfoResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    app__views__v2__language__LanguageInfo:
      properties:
        locale:
          type: string
          title: Locale
        language:
          type: string
          title: Language
        dubbing_support:
          type: boolean
          title: Dubbing Support
        voice_cloning_support:
          type: boolean
          title: Voice Cloning Support
        text_support:
          type: boolean
          title: Text Support
        language_id:
          type: integer
          title: Language Id
      type: object
      required:
        - locale
        - language
        - dubbing_support
        - voice_cloning_support
        - text_support
        - language_id
      title: LanguageInfo
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````