Back to Services
Basic Trustrest
DeepL — Machine Translation
Translate text between 30+ languages with best-in-class neural machine translation. Supports formal/informal tone and glossaries.
Total Calls
0
Success Rate
—
Avg Latency
—
Capabilities
translationnlplanguagelocalization
Quick Integration
Call this service through the Agent Clear proxy
// Call DeepL — Machine Translation through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/370aad9b-98ec-4938-9ccb-d8d5f66fef6b',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"required": [
"text",
"target_lang"
],
"properties": {
"text": {
"type": "array",
"items": {
"type": "string"
},
"description": "Text to translate"
},
"formality": {
"enum": [
"default",
"more",
"less"
],
"type": "string"
},
"source_lang": {
"type": "string",
"description": "Source language code (auto-detect if omitted)"
},
"target_lang": {
"type": "string",
"description": "Target language code"
}
}
}Output Schema
{
"type": "object",
"properties": {
"translations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"detected_source_language": {
"type": "string"
}
}
}
}
}
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 60 req/min
- Trust Score
- 0.5
- Registered
- Mar 2, 2026
- Last Updated
- Mar 2, 2026