v1
latestOpenAPI 3.0.32026-07-265278189.1 KBMetaInformation
Retrieve Languages
Returns languages supported by the specified DeepL API resource. Each language indicates whether it can be used as a source language, a target language, or both, along with the features it supports for that resource.
get/v3/languages
Query parameters
resource'translate_text' | 'translate_document' | 'glossary' | 'voice' | 'write' | 'style_rules' | 'translation_memory' required
The resource to retrieve languages for. Supported values: translate_text, translate_document, glossary, voice, write, style_rules, translation_memory.
includestring[]
Controls which languages and features are included in the response. By default, only stable languages and features are returned. Values can be combined with repeated parameters (e.g. ?include=beta&include=external).
- beta: Include languages and features in beta, in addition to stable
- external: Include features that rely on third-party service providers
Response
JSON array where each item represents a supported language.
Example response
[
{
"lang": "de",
"name": "German",
"status": "stable",
"features": {
"formality": {
"status": "stable"
},
"tag_handling": {
"status": "stable"
},
"glossary": {
"status": "stable"
}
}
}
]