GET
/
v3
/
glossaries
/
{glossary_id}
/
entries
curl --request GET \
  --url https://api.deepl.com/v3/glossaries/{glossary_id}/entries \
  --header 'Authorization: <api-key>'
{
  "source_lang": "en",
  "target_lang": "de",
  "entries": "Hello\tGuten Tag",
  "entries_format": "tsv"
}

Authorizations

Authorization
string
header
required

Authentication with Authorization header and DeepL-Auth-Key authentication scheme

Path Parameters

glossary_id
string
required

A unique ID assigned to the glossary.

Query Parameters

source_lang
enum<string>
required

The language in which the source texts in the glossary are specified.

Available options:
ar,
bg,
cs,
da,
de,
el,
en,
es,
et,
fi,
fr,
he,
hu,
id,
it,
ja,
ko,
lt,
lv,
nb,
nl,
pl,
pt,
ro,
ru,
sk,
sl,
sv,
th,
tr,
uk,
vi,
zh
Example:

"en"

target_lang
enum<string>
required

The language in which the target texts in the glossary are specified.

Available options:
ar,
bg,
cs,
da,
de,
el,
en,
es,
et,
fi,
fr,
he,
hu,
id,
it,
ja,
ko,
lt,
lv,
nb,
nl,
pl,
pt,
ro,
ru,
sk,
sl,
sv,
th,
tr,
uk,
vi,
zh
Example:

"de"

Response

200
application/json

The entries in tsv, wrapped in a JSON object.

A dictionary contained in a multilingual glossary. Each dictionary contains the mapping of source terms to target language terms.