Translate Marketing Content
Translate marketing copy, ad text, and campaign content into multiple languages while preserving brand voice.
Accurate translation, 30+ languages
Professional translations across 30+ languages with formality control, context hints, and HTML/XML handling. Translate strings or batches, auto-detect source language, and preserve markup. For support tools, content pipelines, and multilingual apps.
Translate one or more texts into any target language. Supports auto-detection of source language, formality control (formal/informal), contextual hints for better accuracy, and HTML/XML tag handling. Pass an array for batch translation.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "translate",
"skill": "translate_text",
"input": {
"text": "Hello, how are you?",
"target_lang": "DE"
}
}' \
https://api.toolrouter.com/v1/tools/callDetect the language of a given text. Returns the detected language code and a sample translation to English for verification.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "translate",
"skill": "detect_language",
"input": {
"text": "Wie geht es Ihnen heute?"
}
}' \
https://api.toolrouter.com/v1/tools/callList all supported languages for translation. Can show source languages (translate from) or target languages (translate to) with formality support info.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "translate",
"skill": "list_languages",
"input": {
"type": "target"
}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"translate","skill":"translate_text","input":{}}' \
https://api.toolrouter.com/v1/tools/callTranslate marketing copy, ad text, and campaign content into multiple languages while preserving brand voice.
Translate product titles, descriptions, and specs for international e-commerce stores and marketplaces.
Find relevant academic papers on any research topic across millions of scholarly publications.
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Build targeted email campaigns with qualified leads, persona-driven messaging, multi-language support, and custom visual assets.
Research international markets with deep analysis, content localization testing, and local competitive landscape assessment.
Create localized marketing content by researching local trends, translating content, studying local social media, and generating culturally adapted visuals.
Automatically dub videos into multiple languages with transcript extraction, translation, and AI voice generation.
Yes. `translate_text` accepts a single string or an array of strings, so you can translate UI copy, labels, or content batches in one request.
Set `tag_handling` to `html` or `xml`. The tags stay in place while the text inside them is translated.
Yes. Use the formality setting to bias the output toward formal or informal language, and add context when a word could mean more than one thing.
Use `list_languages` to see the supported source and target codes, then `detect_language` if you need to identify the input language before translating.