Transliterate Text
This API endpoint transliterates text from one language to another. For example, from English to Hindi.
Header Parameters
Content-Type string
The content type should be application/json.
Example: application/json
x-client string
Specifies the client name
Example: jiocoupons
Authorization string required
API key for authorization.
application/json
Request Body
- The language of the input text.
- Supported languages: [ "English", "Hindi", "Gujarati", "Marathi", "Telugu", "Bengali", "Kannada", "Malayalam", "Tamil", "Spanish", "German", "Italian", "French", "Urdu", "Punjabi", "Assamese", "Oriya", "Standard Arabic", "Traditional Chinese", "Bahasa", "Dutch", "Korean", "Malay", "Polish", "Portuguese", "Russian", "Simplified Chinese", "Tagalog", "Thai", "Turkish", "Vietnamese" ]
- The language of the output text.
- Supported languages: [ "English", "Hindi", "Gujarati", "Marathi", "Telugu", "Bengali", "Kannada", "Malayalam", "Tamil", "Spanish", "German", "Italian", "French", "Urdu", "Punjabi", "Assamese", "Oriya", "Standard Arabic", "Traditional Chinese", "Bahasa", "Dutch", "Korean", "Malay", "Polish", "Portuguese", "Russian", "Simplified Chinese", "Tagalog", "Thai", "Turkish", "Vietnamese" ]
text string required
The text to be transliterated.
platform string
Possible values: [jiotranslate
]
Platform used for translation
source_language string
target_language string
Responses
- 200
- 400
- 401
- 422
Success
application/json
Schema
Example (from schema)
Example
Schema
transliterated_text string
The transliterated text.
{
"transliterated_text": "आप कैसे हो"
}
{
"transliterated_text": "आप कैसे हो"
}
Bad Request
application/json
Schema
Example (from schema)
Example
Schema
status string
Status of the API response.
message string
Error message detailing why the request was bad.
{
"status": "failed",
"message": "Bad Request"
}
{
"status": "failed",
"message": "Bad Request"
}
Unauthorized
application/json
Schema
Example (from schema)
Example
Schema
status string
Status of the API response.
message string
Error message detailing why the request was unauthorized.
{
"status": "failed",
"message": "Unauthorized"
}
{
"status": "failed",
"message": "Unauthorized"
}
Unprocessable Entity
application/json
Schema
Example (from schema)
Example
Schema
customCode integer
Custom error code.
message string
Error message detailing why the request was unprocessable.
errorsArray string[]
Array of validation errors.
{
"customCode": 422,
"message": "Validation Error",
"errorsArray": []
}
{
"customCode": 422,
"message": "Validation Error",
"errorsArray": []
}
Loading...