Create and manage named term lists for the Developer API. Glossaries are scoped to your API key’s team.
List glossaries
Authorization: Bearer <key_id>.<secret>Never expose or share your API key — treat it like a password.
pageSize (number (query))
Optional query. Clamped between 1 and 100; default 20.
pageToken (string (query))
Optional opaque cursor from a previous list response (next_page_token).
Root object: glossaries (array), next_page_token (string or null).
id (string)
Public glossary id (e.g. glo_… or UUID).
name (string)
Glossary name.
description (string)
Description text, if any.
status (string)
Glossary status string.
terms_count (number)
Number of term rows.
updated_at (string (ISO))
Last update time (ISO 8601).
next_page_token (string | null)
Pass as pageToken on the next list request, or null when there is no further page.
{ "error": "Message", "code": "ERROR_CODE" }API_KEY=itk_xxx.its_yyy
curl -sS -H "Authorization: Bearer ${API_KEY}" \
"https://api.translatenets.com/api/v1/glossaries?pageSize=20"