Integrate AI-powered translation directly into your platform—instantly translate text, documents, even images with a single API.
RESTful JSON API with standard auth headers.
Handles live and batch jobs; queueing support available.
Encrypted in transit, no data retention, supports GDPR.
Choose tone, formality, dialect customization per request.
curl -X POST https://api.uptexty.com/v1/translate/text -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{
"source_lang":"en",
"target_lang":"ne",
"text":"Hello, world!",
"tone":"formal"
}'const res = await fetch('https://api.uptexty.com/v1/translate/text', {
method:'POST',
headers:{
'Authorization':Bearer undefined,
'Content-Type':'application/json'
},
body: JSON.stringify({
source_lang:'en',
target_lang:'es',
text:'Welcome to Uptexty!',
formality:'casual'
})
});
const { translated_text } = await res.json();
console.log(translated_text);Send a test request, view live translations, and explore sample keys.