v4

latestSwagger 2.02026-07-1371563.0 KB
Transliterate

Converts the text of a language in one script into another type of script. Example- Japanese script "こんにちは" Same word in Latin script "konnichiha"

post/transliterate

Query parameters

api-versionstring required

Version of the API requested by the client. Value must be 3.0.

languagestring required

Specifies the language of the text to convert from one script to another. Possible languages are listed in the transliteration scope obtained by querying the service for its supported languages.

fromScriptstring required

Specifies the script used by the input text. Lookup supported languages using the transliteration scope, to find input scripts available for the selected language.

toScriptstring required

Specifies the output script. Lookup supported languages using the transliteration scope, to find output scripts available for the selected combination of input language and input script.

Headers

X-ClientTraceIdstring

A client-generated GUID to uniquely identify the request. Note that you can omit this header if you include the trace ID in the query string using a query parameter named ClientTraceId.

Request body

textstring

Example request

[
  {
    "text": "Good morning, how are you today?"
  }
]

Response

Success

textstring
scriptstring

Example response

[
  {
    "text": "this is cool",
    "script": "this is very cool"
  }
]