Translate structured content — JSON, HTML, Markdown, templates, UI strings — wit
Translate structured content — JSON, HTML, Markdown, templates, UI strings — without breaking structure. Preserves keys, tags, markdown, URLs, emails, variables, placeholders, code blocks, and brand names, honors a caller glossary, and validates that no placeholder was dropped, so agents can localize app content safely.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
943 msmedian answer time
$0.02listed price per call
$0.02price 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/structured
| Category | Code and developer |
|---|---|
| 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.02 | 943 ms |
Example input (from the provider)
{
"body": {
"content": {
"cta": "Click here to open the dashboard",
"greeting": "Hello {{name}}"
},
"glossary": {
"dashboard": "tableau de bord"
},
"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": {
"content": {
"description": "The structured content to translate: a JSON object/array, or a string of HTML, Markdown, or template text. Max 32KB / 500 strings.",
"type": "object"
},
"content_type": {
"description": "One of \"json\", \"html\", \"markdown\", \"template\", \"text\". Auto-detected when omitted; a non-string content is always treated as json.",
"type": "string"
},
"formality": {
"description": "\"formal\", \"informal\", or \"neutral\" (default).",
"type": "string"
},
"glossary": {
"description": "Enforced term mappings: {\"dashboard\":\"tableau de bord\"}. Compliance is reported per term; a missed term costs 10 points.",
"type": "object"
},
"locale": {
"description": "Target locale for regional variants, e.g. \"fr-CA\".",
"type": "string"
},
"protected_values": {
"description": "Strings that must pass through byte-for-byte \u2014 brand names, IDs, SKUs: [\"Acme\",\"SKU-1234\"]. Dropping one fails the call.",
"type": "array"
},
"source": {
"description": "Source language. Auto-detected 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": [
"content",
"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": {
"content_type": {
"description": "The content type used (given or auto-detected)",
"type": "string"
},
"detected_language": {
"description": "ISO 639-1 code of the source language",
"type": "string"
},
"findings": {
"description": "Scored deductions, e.g. glossary_missed",
"type": "array"
},
"glossary_compliance": {
"description": "Which glossary terms were applied and which were missed",
"type": "object"
},
"grade": {
"description": "Letter grade A-F derived from score",
"type": "string"
},
"placeholder_validation": {
"description": "Proof that every placeholder, tag, URL, email, code span, and protected value survived. A drop is a 502, never a 200.",
"type": "object"
},
"score": {
"description": "0-100; 100 on a clean, structure-valid translation",
"type": "number"
},
"structure_validation": {
"description": "Proof the document still parses: JSON keys intact, HTML tags balanced, markdown syntax preserved",
"type": "object"
},
"target_language": {
"description": "ISO 639-1 code translated into",
"type": "string"
},
"translated": {
"description": "The translated document, in the same shape and format as the input",
"type": "object"
},
"warnings": {
"description": "Non-fatal notes, e.g. a missed glossary term",
"type": "array"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}