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

# Get Glossary for Language

> Retrieves all glossary terms and their descriptions filtered for a specific language. Only rows that have a term in the requested language are returned. If no language is provided, defaults to the organization's main language (from installation config), or en-US / en-GB as fallback.



## OpenAPI

````yaml GET /api/public/glossary/{lang}
openapi: 3.0.0
info:
  title: Prismy API
  description: API for managing translations with Prismy
  version: 1.0.0
servers:
  - url: https://app.prismy.io
    description: Production server
security:
  - bearerAuth: []
paths:
  /api/public/glossary/{lang}:
    get:
      tags:
        - Public API
      summary: Get glossary terms for a language
      description: >-
        Retrieves all glossary terms and their descriptions filtered for a
        specific language. Only rows that have a term in the requested language
        are returned. If no language is provided, defaults to the organization's
        main language (from installation config), or en-US / en-GB as fallback.
      operationId: getGlossaryForLang
      parameters:
        - name: lang
          in: path
          required: true
          schema:
            type: string
          description: Language code (e.g., en-US, fr-FR, es-ES)
          example: fr-FR
      responses:
        '200':
          description: Glossary terms for the language retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GlossaryTermForLang'
        '401':
          description: Unauthorized - Invalid or missing API token
components:
  schemas:
    GlossaryTermForLang:
      type: object
      properties:
        description:
          type: string
          nullable: true
          description: Optional description of the term
          example: A description
        term:
          type: string
          description: The glossary term value in the requested language
          example: disponibilité
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: API token from your organization settings

````