Skip to main content

Glossary Entries

Get glossary entries.

Get Entries

Endpoint

GET /api/v4/glossaries/{id}/entries

Request Headers

HeaderValue
Accepttext/csv

Response

Returns CSV text with glossary entries.

Response Format

CSV with source and target terms:

source_term,target_term

TypeScript Type

type GlossaryEntry = {
id: number;
source_term: string;
target_term: string;
};

Notes

  • Entries are returned as CSV text, not JSON
  • Each line contains a source term and target term separated by comma
  • The response header Accept: text/csv is required
  • Entries represent translation mappings between source and target languages
  • Entry parsing is handled client-side from CSV format