Returns a list of supported languages for translation.
HTTP request
GET https://api-gl.lingvanex.com/language/translate/v2/languages
Query parameters
Parameters | |
---|---|
target | string The target language code for the results. If specified, then the language names are returned in the name field of the response, localized in the target language. If you do not supply a target language, then the name field is omitted from the response and only the language codes are returned. |
model | string Not optional, does not affect anything. |
key | string A valid API key to handle requests for this API. |
Response body
If successful, the response body contains data with the following structure:
{
"data": {
object(GetSupportedLanguagesResponseList)
},
}
Fields | |
---|---|
data | object(GetSupportedLanguagesResponseList) A list of supported language responses. This list will contain an entry for each language supported by the Translation API. |
GetSupportedLanguagesResponseList
A response list contains a list of separate supported language responses.
{
"languages": [
{
object(GetSupportedLanguagesResponseLanguage)
}
],
}
Fields | |
---|---|
languages[] | array (GetSupportedLanguagesResponseLanguage) The set of supported languages. |
GetSupportedLanguagesResponseLanguage
A single supported language response corresponds to information related to one supported language.
{
"language": string,
"name": string,
}
Fields | |
---|---|
language | string Supported language code, generally consisting of its ISO 639-1 identifier. (E.g. 'en', 'ja'). In certain cases, BCP-47 codes including language + region identifiers are returned (e.g. 'zh-TW' and 'zh-CH') |
name | string Human readable name of the language localized to the target language. |