# netintel.dev Translate Long

> netintel.dev Translate Long is a paid API for AI agents from netintel.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Translates long-form text from one language to another, returning a graded translation with quality scoring and source language detection

## Facts

- Endpoint: POST https://netintel.dev/translate/long
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-dev-translate-long-e28011cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wLdA_MMGap_eGLhn08nGA

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability netintel-dev-translate-long-e28011cd -d '<json body>'
```

Example prompt: Translate this 300-word English article about the James Webb Space Telescope into German and give me a quality grade on the translation: 'The James Webb Space Telescope has captured its deepest infrared image of the universe yet, revealing thousands of galaxies in a tiny patch of sky.'

## When to prefer this

Choose this endpoint when you need to translate substantial, long-form content (paragraphs or full documents) and also want a quality grade and score alongside the translated output. Prefer this over short-text translation endpoints when the content exceeds a sentence or two in length. The grading feature makes it especially useful when translation quality assurance matters, such as for publishing or professional use.

## Known failure modes

- Unsupported language pair returns an error or low service_score
- Text too short for 'long' tier may be rejected or scored poorly
- Missing or malformed target_language parameter causes a 4xx error
- Micropayment failure via x402 results in 402 Payment Required with no translation returned
- Empty or null input text returns an error response

## How this service works

Translate up to 2000 words between languages using Claude Haiku — auto-detects source, supports 30+ target languages, preserves formatting, for larger documents and articles. For short snippets use the cheaper /translate/short.

## Output

A JSON object containing the translated text, detected source language, specified target language, a letter grade (e.g. 'A') for translation quality, a numeric service score out of 100, word count of the translation, a tier label ('long'), and an array of findings or issues identified during translation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "text",
      "target"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "The text to translate. Max 2000 words (and 50KB). For shorter snippets use the cheaper /translate/short. Aliases also accepted: q, input, content, message."
      },
      "source": {
       "type": "string",
       "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."
      },
      "target": {
       "type": "string",
       "description": "Target language as an ISO 639-1 code (e.g. \"de\") or English name (e.g. \"German\"). 30+ languages mapped directly; other values (endonyms, qualified names like \"Brazilian Portuguese\") 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": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "tier": {
       "type": "string",
       "description": "Pricing tier — always \"long\" for this endpoint"
      },
      "grade": {
       "type": "string",
       "description": "Letter grade A-F derived from service_score"
      },
      "findings": {
       "type": "array",
       "description": "Plain-string hints — e.g. a targetHint string when the target language was model-interpreted"
      },
      "word_count": {
       "type": "number",
       "description": "Word count of the input text"
      },
      "translation": {
       "type": "string",
       "description": "The translated text, formatting preserved"
      },
      "service_score": {
       "type": "number",
      
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tier": "long",
  "grade": "A",
  "findings": [],
  "word_count": 26,
  "translation": "Das James-Webb-Weltraumteleskop hat sein bisher tiefstes Infrarotbild des Universums aufgenommen und Tausende von Galaxien in einem winzigen Himmelsausschnitt enthüllt.",
  "service_score": 100,
  "source_detected": true,
  "source_language": "en",
  "target_language": "de"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-dev-translate-long-e28011cd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel.dev](https://www.zero.xyz/host/netintel.dev/llms.txt)
