ListLanguagesResponse

Response from the Yandex Translate API list languages endpoint

Machine TranslationNatural Language ProcessingLanguage DetectionTranslation DictionaryMultilingualYandex CloudLocalizationInternationalization

Properties

Name Type Description
languages array List of languages supported by the Translate API.
View JSON Schema on GitHub

JSON Schema

list-languages-response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/yandex-translate/main/json-schema/list-languages-response.json",
  "title": "ListLanguagesResponse",
  "description": "Response from the Yandex Translate API list languages endpoint",
  "type": "object",
  "properties": {
    "languages": {
      "type": "array",
      "description": "List of languages supported by the Translate API.",
      "items": {
        "$ref": "#/definitions/Language"
      }
    }
  },
  "definitions": {
    "Language": {
      "type": "object",
      "description": "A supported language entry",
      "properties": {
        "code": {
          "type": "string",
          "description": "The language code, typically in ISO 639-1 format (e.g., 'en', 'ru', 'fr').",
          "example": "en"
        },
        "name": {
          "type": "string",
          "description": "The human-readable name of the language (e.g., 'English').",
          "example": "English"
        }
      }
    }
  }
}