Translate many independent strings in one request — each with a caller ID preser
Translate many independent strings in one request — each with a caller ID preserved in the response — with per-item status, glossary and tone support, and partial success so one bad item never fails the batch, so agents can localize whole string tables in a single call.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
940 msmedian answer time
$0.05listed price per call
$0.05price 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://netintel.dev/translate/batch
| Category | Everything else |
|---|---|
| Provider host | netintel.dev |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| 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.05 | 940 ms |
Example input (from the provider)
{
"body": {
"glossary": {
"dashboard": "tableau de bord"
},
"items": [
{
"id": "greeting",
"text": "Hello {{name}}"
},
{
"id": "cta",
"text": "Open the dashboard"
}
],
"target": "fr"
},
"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": {
"formality": {
"description": "\"formal\", \"informal\", or \"neutral\" (default).",
"type": "string"
},
"glossary": {
"description": "Enforced term mappings applied to all items: {\"dashboard\":\"tableau de bord\"}.",
"type": "object"
},
"items": {
"description": "The strings to translate: [{\"id\":\"greeting\",\"text\":\"Hello {{name}}\",\"context\":\"button label\"}]. ids and order are preserved in the response. 1-200 items, 64KB total.",
"type": "array"
},
"protected_values": {
"description": "Strings that must survive byte-for-byte in every item \u2014 brand names, IDs: [\"Acme\"].",
"type": "array"
},
"source": {
"description": "Source language, applied to every item. Auto-detected per item when omitted.",
"type": "string"
},
"target": {
"description": "Target language \u2014 ISO 639-1 code (\"fr\") or English name (\"French\"). Aliases also accepted: target_lang, target_language, to, lang.",
"type": "string"
},
"tone": {
"description": "Optional tone guidance, e.g. \"friendly and concise\".",
"type": "string"
}
},
"required": [
"items",
"target"
],
"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": {
"billed_items": {
"description": "Item count used for pricing (base covers 25)",
"type": "number"
},
"failed": {
"description": "Items that failed \u2014 the batch still returns 200",
"type": "number"
},
"findings": {
"description": "Scored deductions, e.g. all_items_failed",
"type": "array"
},
"grade": {
"description": "Letter grade A-F derived from score",
"type": "string"
},
"item_count": {
"description": "Items submitted",
"type": "number"
},
"items": {
"description": "One entry per input item, in input order, each carrying your id: {id, status (\"ok\"|\"failed\"), translated, detected_language, confidence, warnings, reason}. A failed item has translated=null and a reason (structure_broken, unparseable, truncated, llm_unavailable, timeout).",
"type": "array"
},
"pricing": {
"description": "Base price, included items, and per-item overage beyond the included count",
"type": "object"
},
"score": {
"description": "0-100; 100 on a successful run, even with some items failed",
"type": "number"
},
"succeeded": {
"description": "Items translated and structurally verified",
"type": "number"
},
"target_language": {
"description": "ISO 639-1 code translated into",
"type": "string"
},
"usage": {
"description": "Model, model_calls, input_tokens, output_tokens",
"type": "object"
},
"warnings": {
"description": "Batch-level notes, e.g. that some items failed",
"type": "array"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}