Skip to main content

List Glossaries

Retrieve all glossaries.

Endpoint

GET /api/v4/glossaries

Response Type

type GlossaryList = {
count: number;
total_results: number;
result: Glossary[];
};
type Glossary = {
id: number;
name: string;
description: string | null;
source_language: string;
target_language: string;
entry_count: number;
is_active: boolean;
deepl_glossary_id: string | null;
google_glossary_id: string | null;
organization_id: number;
created_at: string;
last_modified: string;
entries?: GlossaryEntry[];
};

Notes

  • Returns a list of all glossaries for the organization
  • Each glossary includes source and target language codes
  • The entry_count field indicates the number of term mappings
  • Glossaries may be linked to DeepL or Google translation services