Get Glossary
Retrieve glossary details.
Endpoint
GET /api/v4/glossaries/{id}
Query Parameters
| Parameter | Type | Description |
|---|---|---|
include_entries | string | Include entries (default: "false") |
limit | string | Limit number of entries (default: "1000") |
Response Type
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[];
};
type GlossaryEntry = {
id: number;
source_term: string;
target_term: string;
};
Notes
- Returns glossary details including source and target languages
- Optionally includes entries array if
include_entries=true - The
limitparameter controls maximum number of entries returned - Entries are term mappings between source and target languages