ToolAssay

Translate text between languages — text translation API for short content

Translate text between languages — text translation API for short content: translate a sentence, chat message, or up to 500 words to English, Spanish, French, Chinese, or any of 30+ languages. Language translation with auto-detected source language, formatting preserved; returns the translation plus detected source. Machine translation via Claude Haiku for agents localizing content cheaply. For longer documents use /translate/long.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
949 msmedian answer time
$0.01listed price per call
$0.01price 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/short

CategoryEverything else
Provider hostnetintel.dev
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.01 949 ms

Example input (from the provider)

{
  "body": {
    "target": "fr",
    "text": "Hello world"
  },
  "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": {
            "source": {
              "description": "Optional source language (ISO 639-1 code or English name). When omitted, the source language is auto-detected. Aliases also accepted: source_language, from.",
              "type": "string"
            },
            "target": {
              "description": "Target language as an ISO 639-1 code (e.g. \"fr\") or English name (e.g. \"French\"). 30+ languages mapped directly; other values (endonyms, qualified names) are interpreted by the model with a targetHint finding. Required. Aliases also accepted: target_lang, target_language, to, lang, targetLanguage. (The response returns this as target_language.)",
              "type": "string"
            },
            "text": {
              "description": "The text to translate. Max 500 words (and 50KB). For longer documents use /translate/long. Aliases also accepted: q, input, content, message.",
              "type": "string"
            }
          },
          "required": [
            "text",
            "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": {
            "findings": {
              "description": "Plain-string hints \u2014 e.g. a targetHint string when the target language was model-interpreted",
              "type": "array"
            },
            "grade": {
              "description": "Letter grade A-F derived from service_score",
              "type": "string"
            },
            "service_score": {
              "description": "Endpoint health score 0-100 (100 on success)",
              "type": "number"
            },
            "source_detected": {
              "description": "true when the source language was auto-detected; false when supplied by the caller",
              "type": "boolean"
            },
            "source_language": {
              "description": "ISO 639-1 code of the source language (detected or supplied)",
              "type": "string"
            },
            "target_language": {
              "description": "ISO 639-1 code of the target language",
              "type": "string"
            },
            "tier": {
              "description": "Pricing tier \u2014 always \"short\" for this endpoint",
              "type": "string"
            },
            "translation": {
              "description": "The translated text, formatting preserved",
              "type": "string"
            },
            "word_count": {
              "description": "Word count of the input text",
              "type": "number"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON