Build/Tools/Text Translate
AI-powered1 credit / callPOST /api/v1/tools/text/translate

Text Translate

70+ languages — auto source detection

Translate text to any of 70+ languages using GPT-4o-mini. Source language is auto-detected when the `from` parameter is omitted. Key params: `to` and `from` — not `target_language` or `source_language`.

How it works

Sends text to GPT-4o-mini with a structured translation prompt. Returns translated text, source and target language names, and confidence.

What you could build

LocaleKit
Translate i18n JSON files for indie app developers
$1K–$3K MRR
est. MRR
SupportBridge
Auto-translate customer support tickets before routing
$2K–$5K MRR
est. MRR
GlobalCMS
Translate CMS content for multilingual websites
$2K–$6K MRR
est. MRR

Parameters

textrequired
Text to translate — max 50,000 characters· e.g. Hello, how are you today?
torequired
Target language ISO-639-1 code. Param is 'to' — not 'target_language'.· e.g. hi
fromoptional
Source language code. Omit to auto-detect.· e.g. en

Example request

curl
curl -X POST https://aplicious.com/api/v1/tools/text/translate \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"text":"Hello, how are you today?","to":"hi"}'

Example response

json
{
  "success": true,
  "data": {
    "translated": "नमस्ते, आप आज कैसे हैं?",
    "source_language": "en",
    "source_language_name": "English",
    "target_language": "hi",
    "target_language_name": "Hindi",
    "confidence": 0.99,
    "metadata": { "model": "gpt-4o-mini", "processing_ms": 3088 }
  }
}
Ready to use Text Translate?

Free plan — 100 calls/month, no credit card.