> ## 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

> Retrieves all glossary terms and their translations for your organization



## OpenAPI

````yaml GET /api/public/glossary
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:
    get:
      tags:
        - Public API
      summary: Get glossary terms
      description: >-
        Retrieves all glossary terms and their translations for your
        organization
      operationId: getGlossary
      responses:
        '200':
          description: Glossary retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GlossaryTerm'
        '401':
          description: Unauthorized - Invalid or missing API token
components:
  schemas:
    GlossaryTerm:
      type: object
      properties:
        description:
          type: string
          nullable: true
          description: Optional description of the term
          example: A description
        terms:
          type: object
          additionalProperties:
            type: object
            properties:
              value:
                type: string
          example:
            en-US:
              value: availability
            fr-FR:
              value: disponibilité
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: API token from your organization settings

````