v4
latestSwagger 2.02026-07-1371563.0 KBConverts the text of a language in one script into another type of script. Example- Japanese script "こんにちは" Same word in Latin script "konnichiha"
Query parameters
Version of the API requested by the client. Value must be 3.0.
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.
Specifies the script used by the input text. Lookup supported languages using the transliteration scope, to find input scripts available for the selected language.
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
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
Example request
[
{
"text": "Good morning, how are you today?"
}
]Response
Success
Example response
[
{
"text": "this is cool",
"script": "this is very cool"
}
]