Translation for agents handling multilingual DeFi content
Translation for agents handling multilingual DeFi content: converts protocol docs and error messages across languages with tone control and auto source-language detection. Category: inference.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
245 msmedian answer time
$0.002listed price per call
$0.002price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://agentforge-taupe.vercel.app/v1/translate
| Category | Market data |
|---|---|
| Provider host | agentforge-taupe.vercel.app |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.002 | 245 ms |
Example input (from the provider)
{
"body": {
"targetLanguage": "Spanish",
"text": "Hello, how are you?",
"tone": "casual"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"sourceLanguage": {
"description": "Source language (auto-detected if omitted)",
"type": "string"
},
"targetLanguage": {
"description": "Target language (e.g., Spanish, French, Japanese)",
"maxLength": 50,
"minLength": 2,
"type": "string"
},
"text": {
"description": "Text to translate",
"maxLength": 20000,
"minLength": 1,
"type": "string"
},
"tone": {
"default": "formal",
"enum": [
"formal",
"casual",
"technical"
],
"type": "string"
}
},
"required": [
"text",
"targetLanguage"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"detectedSourceLanguage": {
"type": "string"
},
"metadata": {
"properties": {
"model": {
"type": "string"
},
"processingTimeMs": {
"type": "number"
}
},
"type": "object"
},
"targetLanguage": {
"type": "string"
},
"translatedText": {
"type": "string"
}
},
"required": [
"translatedText",
"detectedSourceLanguage",
"targetLanguage",
"metadata"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}