Skip to main content
GET
/
api
/
public
/
glossary
/
{lang}
Get glossary terms for a language
curl --request GET \
  --url https://app.prismy.io/api/public/glossary/{lang} \
  --header 'Authorization: Bearer <token>'
[
  {
    "description": "A description",
    "term": "disponibilité"
  }
]

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.

Authorizations

Authorization
string
header
required

API token from your organization settings

Path Parameters

lang
string
required

Language code (e.g., en-US, fr-FR, es-ES)

Response

Glossary terms for the language retrieved successfully

description
string | null

Optional description of the term

Example:

"A description"

term
string

The glossary term value in the requested language

Example:

"disponibilité"