english русский 中国人 translo.org
Translo | Yandex | Microsoft | Lingvanex | Deepl | ||
---|---|---|---|---|---|---|
Live support (5-9h to answer) t.me/armanokka | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Has translator bot in telegram? t.me/translobot | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
SLA 100%. 1% refund of subscription price each minute of downtime | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Doesn’t charge for error requests? | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Has <notranslate></notranslate> tag support? | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Keeps UTF-16 characters? | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Keeps emojis? | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Keeps HTML? | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Max volume of text in single request | Unlimited | 50M | 20M | 50 000 | 40 000 | 10 000 |
Number of supported languages | 138 | 126 | 95 | 81 | 50 | 26 |
eu-north-1.translo.org
⠀⠀⠀
eu-north-2.translo.org
⠀⠀⠀
eu-east-1.translo.org
⠀⠀⠀
eu-east-2.translo.org
⠀
eu-west-1.translo.org
⠀⠀⠀
eu-south-1.translo.org
⠀⠀⠀
eu-south-2.translo.org
⠀⠀⠀
us-west-1.translo.org
⠀
us-north-1.translo.org
⠀⠀⠀
us-north-2.translo.org
⠀⠀⠀
us-east-1.translo.org
⠀⠀⠀
us-south-1.translo.org
⠀
Language - ISO-639-1 Code
How to get API token described here: https://rapidapi.com/armangokka/api/translo/tutorials/how-to-get-api-token%3F-1
PHP, Python, Node.JS and Golang libraries are here https://rapidapi.com/armangokka/api/translo/tutorials/libraries-for-translo-api:-python,-php,-node.js,-go
/api/v3/translate
curl --request POST \
--url https://translo.p.rapidapi.com/api/v3/translate \
--header 'X-RapidAPI-Host: translo.p.rapidapi.com' \
--header 'X-RapidAPI-Key: YOUR-RAPIDAPI-KEY' \
--header 'content-type: application/x-www-form-urlencoded' \
--data from=en \
--data to=ru \
--data text=Hello
/batch_translate
curl --request POST \
--url https://translo.p.rapidapi.com/api/v3/batch_translate \
--header 'X-RapidAPI-Host: translo.p.rapidapi.com' \
--header 'X-RapidAPI-Key: YOUR-RAPIDAPI-KEY' \
--header 'content-type: application/json' \
--data '[
{
"from": "auto",
"to": "es",
"text": "banana"
}
]'
/detect
curl --request GET \
--url 'https://translo.p.rapidapi.com/api/v3/detect?text=Translo%20is%20the%20best%20translator%20in%20Telegram' \
--header 'X-RapidAPI-Host: translo.p.rapidapi.com' \
--header 'X-RapidAPI-Key: YOUR-RAPIDAPI-KEY'