Microsoft Translator Text
# Introduction The Microsoft Translator Text API provides a JSON-based Web API. It provides: * Translation between any supported languages to any other supported language. * Translation to multiple languages in one request. * Transliteration to convert text from one script to another script of the same language. * Language detection, translation, and transliteration in one request. * Dictionary…
Microsoft Translator Text endpoints
| Method | Endpoint | Description |
|---|---|---|
| Break Sentence | ||
| POST |
Break Sentence /BreakSentence |
Identifies the position of sentence boundaries in a piece of text. |
| Detect | ||
| POST |
Detect /Detect |
Identifies the language of a string of text. |
| Dictionary Lookup | ||
| POST |
Dictionary Lookup /Dictionary/Lookup |
Provides alternative translations for a word and a small number of idiomatic phrases. Each translation has a `part-of-speech` and a list of `back-translations`. The… |
| Dictionary Examples | ||
| POST |
Dictionary Examples /Dictionary/Examples |
Provides examples that show how terms in the dictionary are used in context. This operation is used in tandem with `Dictionary lookup`. |
| Languages | ||
| GET |
Languages /languages |
Gets the set of languages currently supported by other operations of the Translator Text API. |
| Translate | ||
| POST |
Translate /translate |
Translates text into one or more languages. |
| Transliterate | ||
| POST |
Transliterate /transliterate |
Converts the text of a language in one script into another type of script. Example- Japanese script "こんにちは" Same word in Latin script "konnichiha" |