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>'
[
  {
    "glossarytermsrowid": 309,
    "description": "A description",
    "term": "disponibilité"
  }
]

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

glossarytermsrowid
integer

Unique identifier for the glossary term row

Example:

309

description
string | null

Optional description of the term

Example:

"A description"

term
string

The glossary term value in the requested language

Example:

"disponibilité"