API for translating Cyrillic ↔ Latin text
To authenticate requests, include an Authorization header with the value "Bearer YOUR_API_TOKEN".
All authenticated endpoints are marked with a requires authentication badge in the documentation below.
Matnni Kirill ↔ Lotin yozuviga o'giradi.
curl --request POST \
"https://api.lotin.uz/api/translate" \
--header "Authorization: Bearer YOUR_API_TOKEN" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"mod\": \"cyrtolat\",
\"text\": \"Кирилл матн\",
\"ignoreHtml\": false
}"
{
"message": "success",
"mod": "cyrtolat",
"text": "Кирилл матн",
"result": "Kirill matn"
}